Trait

com.google.appsscript.adwords

AdGroupDisplay

Related Doc: package adwords

Permalink

trait AdGroupDisplay extends Object

Access to ad group-level display criteria. For example, to access all display keywords in an ad group:

 var displayKeywordIterator = adGroup.display().keywords().get();
 while (displayKeywordIterator.hasNext()) {
   var displayKeyword = displayKeywordIterator.next();
 }

Annotations
@RawJSType()
Linear Supertypes
Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AdGroupDisplay
  2. Object
  3. Any
  4. AnyRef
  5. 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 audiences(): AudienceSelector

    Permalink

    Returns the selector of all audiences in the ad group.

  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 excludedAudiences(): ExcludedAudienceSelector

    Permalink

    Returns the selector of all excluded audiences in the ad group.

  10. def excludedKeywords(): ExcludedDisplayKeywordSelector

    Permalink

    Returns the selector of all excluded display keywords in the ad group.

  11. def excludedPlacements(): ExcludedPlacementSelector

    Permalink

    Returns the selector of all excluded website placements in the ad group.

    Returns the selector of all excluded website placements in the ad group. Mobile app placements and mobile app category placements are not supported.

  12. def excludedTopics(): ExcludedTopicSelector

    Permalink

    Returns the selector of all excluded topics in the ad group.

  13. def finalize(): Unit

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

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

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

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

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

    Permalink
    Definition Classes
    Object
  19. def keywords(): DisplayKeywordSelector

    Permalink

    Returns the selector of all display keywords in the ad group.

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

    Permalink
    Definition Classes
    AnyRef
  21. def newAudienceBuilder(): AudienceBuilder

    Permalink

    Returns a new audience builder for this ad group.

    Returns a new audience builder for this ad group. When AudienceBuilder.build() is called, an audience will be created in this ad group. When AudienceBuilder.exclude() is called, an excluded audience will be created in this ad group.

  22. def newKeywordBuilder(): DisplayKeywordBuilder

    Permalink

    Returns a new display keyword builder for this ad group.

    Returns a new display keyword builder for this ad group. When DisplayKeywordBuilder.build() is called, a display keyword will be created in this ad group. When DisplayKeywordBuilder.exclude() is called, an excluded display keyword will be created in this ad group.

  23. def newPlacementBuilder(): PlacementBuilder

    Permalink

    Returns a new placement builder for this ad group.

    Returns a new placement builder for this ad group. When PlacementBuilder.build() is called, a placement will be created in this ad group. When PlacementBuilder.exclude() is called, an excluded placement will be created in this ad group.

  24. def newTopicBuilder(): TopicBuilder

    Permalink

    Returns a new topic builder for this ad group.

    Returns a new topic builder for this ad group. When TopicBuilder.build() is called, a topic will be created in this ad group. When TopicBuilder.exclude() is called, an excluded topic will be created in this ad group.

  25. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  27. def placements(): PlacementSelector

    Permalink

    Returns the selector of all website placements in the ad group.

    Returns the selector of all website placements in the ad group. Mobile app placements and mobile app category placements are not supported.

  28. def propertyIsEnumerable(v: String): Boolean

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  32. def topics(): TopicSelector

    Permalink

    Returns the selector of all topics in the ad group.

  33. def valueOf(): Any

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

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

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

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

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped