Trait

com.google.appsscript.adwords

AdGroupBuilder

Related Doc: package adwords

Permalink

trait AdGroupBuilder extends Object with Builder[AdGroup] with BuilderWithCustomParameters

Builder for an ad group under construction.

Typical usage:

 var adGroupBuilder = campaign.newAdGroupBuilder();
 var adGroupOperation = adGroupBuilder
    .withName("ad group name")
    .withStatus("PAUSED")
    .build();
 var adGroup = adGroupOperation.getResult();

Annotations
@RawJSType()
Linear Supertypes
BuilderWithCustomParameters, Builder[AdGroup], Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AdGroupBuilder
  2. BuilderWithCustomParameters
  3. Builder
  4. Object
  5. Any
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def build(): Operation[AdGroup]

    Permalink
    Definition Classes
    Builder
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  11. def hasOwnProperty(v: String): Boolean

    Permalink
    Definition Classes
    Object
  12. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  14. def isPrototypeOf(v: Object): Boolean

    Permalink
    Definition Classes
    Object
  15. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. def propertyIsEnumerable(v: String): Boolean

    Permalink
    Definition Classes
    Object
  19. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  20. def toLocaleString(): String

    Permalink
    Definition Classes
    Object
  21. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  22. def valueOf(): Any

    Permalink
    Definition Classes
    Object
  23. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. def withBiddingStrategy(biddingStrategy: BiddingStrategy): AdGroupBuilder

    Permalink

    Sets the bidding strategy of the new ad group to the specified value.

  27. def withCpa(cpa: Double): AdGroupBuilder

    Permalink

    Sets the max CPA bid of the new ad group to the specified value.

    Sets the max CPA bid of the new ad group to the specified value.

    If the bid is not set, the ad group will assume a default max CPA bid of $0.01.

  28. def withCpc(cpc: Double): AdGroupBuilder

    Permalink

    Sets the max CPC bid of the new ad group to the specified value.

    Sets the max CPC bid of the new ad group to the specified value.

    If the bid is not set, the ad group will assume a default max CPC bid of $0.01.

  29. def withCpm(cpm: Double): AdGroupBuilder

    Permalink

    Sets the CPM bid of the new ad group to the specified value.

    Sets the CPM bid of the new ad group to the specified value.

    See Cost-per-thousand impressions (CPM) for more information.

    If the bid is not set, the ad group will assume a default CPM bid of $0.25.

  30. def withCustomParameters(customParameters: AnyRef): AdBuilder

    Permalink

    Sets the custom parameters of the new ad to the specified value.

    Sets the custom parameters of the new ad to the specified value.

    Custom parameters enable you to create your own ValueTrack parameters that you can assign your own IDs to.

    The name of a custom parameter can contain only alphanumeric characters, and custom parameter values may not contain white space. When referring to the custom parameter in final URLs and tracking template, you should surround the custom parameter in braces, and prefix an underscore to its name, e.g. {_param}.

    You can have up to 3 custom parameters for an entity. The key and value must not exceed 16 and 200 bytes respectively.

    Custom parameters specified at a lower level entity will override the setting specified at a higher level entity, e.g., setting custom parameters at the ad group level overrides the setting at the campaign level, and and custom parameters specified at the ad level override the setting at the ad group level.

    See Using Upgraded URLs for more information.

    Definition Classes
    BuilderWithCustomParameters
  31. def withName(name: String): AdGroupBuilder

    Permalink

    Sets the name of the new ad group to the specified value.

    Sets the name of the new ad group to the specified value. If ad group name is not set, the ad group will assume a default name ('Ad Group #5').

  32. def withStatus(status: String): AdGroupBuilder

    Permalink

    Sets the status of the new ad group to the specified value.

    Sets the status of the new ad group to the specified value. If the status is not set, it will default to ENABLED .

  33. def withTrackingTemplate(trackingTemplate: String): AdGroupBuilder

    Permalink

    Sets the tracking template of the new ad group to the specified value.

    Sets the tracking template of the new ad group to the specified value.

    You can optionally use the tracking template to specify additional tracking parameters or redirects. AdWords will use this template to assemble the actual destination URL to associate with the ad.

    A tracking template specified at a lower level entity will override the setting specified at a higher level entity, e.g., a tracking template set at the ad group level overrides the setting at the campaign level, and a tracking template specified at the ad level overrides the setting at the ad group level.

    See Using Upgraded URLs for more information.

Inherited from Builder[AdGroup]

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped