Trait

com.google.appsscript.adwords

ShoppingAdGroup

Related Doc: package adwords

Permalink

trait ShoppingAdGroup extends Object with HasStatistics

Represents a shopping ad group.

Annotations
@RawJSType()
Linear Supertypes
HasStatistics, Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ShoppingAdGroup
  2. HasStatistics
  3. Object
  4. Any
  5. AnyRef
  6. 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. def ads(): ProductAdSelector

    Permalink

    Returns the selector of all product ads in the shopping ad group.

  5. def applyLabel(name: String): Unit

    Permalink

    Applies a label to the shopping ad group.

    Applies a label to the shopping ad group. name of the label is case-sensitive. Operation will fail if the label with the specified name does not already exist in the account.

    Note that the shopping ad group cannot not have more than 50 labels.

    Returns nothing.

  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def bidding(): ShoppingAdGroupBidding

    Permalink

    Provides access to this shopping ad group's bidding fields.

  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def createNegativeKeyword(keywordText: String): Unit

    Permalink

    Creates a new negative keyword with the specified text.

    Creates a new negative keyword with the specified text. Match type for the new negative keyword is specified as follows:

    • createNegativeKeyword("shoes") - broad match.
    • createNegativeKeyword("\"shoes\"") - phrase match.
    • createNegativeKeyword("[leather shoes]") - exact match.

    Returns nothing.

  10. def createRootProductGroup(): Operation[ProductGroup]

    Permalink

    Creates the root product group of the shopping ad group (if one doesn't already exist).

    Creates the root product group of the shopping ad group (if one doesn't already exist). Newly constructed shopping ad groups as well as ones modified by other means may not have any product groups.

  11. def enable(): Unit

    Permalink

    Enables the shopping ad group.

    Enables the shopping ad group.

    Returns nothing.

  12. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. def getCampaign(): ShoppingCampaign

    Permalink

    Returns the shopping campaign to which this shopping ad group belongs.

  16. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  17. def getEntityType(): String

    Permalink

    Returns the type of this entity as a String , in this case, "ShoppingAdGroup" .

    Returns the type of this entity as a String , in this case, "ShoppingAdGroup" .

  18. def getId(): Long

    Permalink

    Returns the ID of the shopping ad group.

  19. def getMobileBidModifier(): Double

    Permalink

    Returns the mobile bid modifier for this ad group.

    Returns the mobile bid modifier for this ad group.

    The bid modifier is a multiplier applied to the shopping ad group's bids on mobile devices. So, for instance, a bid modifier of 1.1 increases the bid to 110% of its original value, and changes a bid of $5.00 to $5.50.

    Note that when you set a mobile bid modifier at both campaign- and ad group-level in a single campaign, the shopping ad group mobile bid modifier will be used when determining your bid.

    For more information about bid modifiers, please see the AdWords Help Center article.

  20. def getName(): String

    Permalink

    Returns the name of the shopping ad group.

  21. def getStatsFor(dateFrom: AnyRef, dateTo: AnyRef): Stats

    Permalink

    Returns stats for the specified custom date range.

    Returns stats for the specified custom date range. Both parameters can be either an object containing year, month, and day fields, or an 8-digit string in YYYYMMDD form. For instance, March 24th, 2013 is represented as either {year: 2013, month: 3, day: 24} or "20130324" . The date range is inclusive on both ends, so forDateRange("20130324", "20130324") defines a range of a single day.

    Definition Classes
    HasStatistics
  22. def hasOwnProperty(v: String): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  24. def isEnabled(): Boolean

    Permalink

    Returns true if the shopping ad group is enabled.

    Returns true if the shopping ad group is enabled.

  25. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  26. def isPaused(): Boolean

    Permalink

    Returns true if the shopping ad group is paused.

    Returns true if the shopping ad group is paused.

  27. def isPrototypeOf(v: Object): Boolean

    Permalink
    Definition Classes
    Object
  28. def isRemoved(): Boolean

    Permalink

    Returns true if the shopping ad group is removed.

    Returns true if the shopping ad group is removed.

  29. def labels(): LabelSelector

    Permalink

    Creates a selector of all labels applied to the shopping ad group.

  30. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  31. def newAdBuilder(): ProductAdBuilder

    Permalink

    Returns a product ad builder.

  32. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  34. def pause(): Unit

    Permalink

    Pauses the shopping ad group.

    Pauses the shopping ad group.

    Returns nothing.

  35. def productGroups(): ProductGroupSelector

    Permalink

    Returns the selector of all product groups in the shopping ad group.

  36. def propertyIsEnumerable(v: String): Boolean

    Permalink
    Definition Classes
    Object
  37. def removeLabel(name: String): Unit

    Permalink

    Removes a label from the shopping ad group.

    Removes a label from the shopping ad group. name of the label is case-sensitive. Operation will fail if the label with the specified name does not already exist in the account.

    Returns nothing.

  38. def rootProductGroup(): ProductGroup

    Permalink

    Returns the root product group of the shopping ad group (if there is one).

  39. def setMobileBidModifier(modifier: Double): Unit

    Permalink

    Sets the mobile bid modifier for this ad group to the specified value.

    Sets the mobile bid modifier for this ad group to the specified value.

    The bid modifier is a multiplier applied to the shopping ad group's bids on mobile devices. So, for instance, a bid modifier of 1.1 increases the bid to 110% of its original value, and changes a bid of $5.00 to $5.50.

    Note that when you set a mobile bid modifier at both campaign- and ad group-level in a single campaign, the shopping ad group mobile bid modifier will be used when determining your bid.

    For more information about bid modifiers, please see the AdWords Help Center article.

    Returns nothing.

  40. def setName(name: String): Unit

    Permalink

    Sets the name of the shopping ad group.

    Sets the name of the shopping ad group.

    Returns nothing.

  41. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from HasStatistics

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped