Trait

com.google.appsscript.adwords

CampaignDisplay

Related Doc: package adwords

Permalink

trait CampaignDisplay extends Object

Access to aggregated ad group-level display criteria for a campaign and campaign-level excluded display criteria for a campaign. For example, to access all display keywords in all ad groups in this campaign:

 var displayKeywordIterator = campaign.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. CampaignDisplay
  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 campaign.

  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 campaign.

  10. def excludedKeywords(): ExcludedDisplayKeywordSelector

    Permalink

    Returns the selector of all excluded display keywords in the campaign.

  11. def excludedPlacements(): ExcludedPlacementSelector

    Permalink

    Returns the selector of all excluded website placements in the campaign.

    Returns the selector of all excluded website placements in the campaign. 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 campaign.

  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 all ad groups in the campaign.

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

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

    Permalink

    Returns a new audience builder for this campaign.

    Returns a new audience builder for this campaign. Only excluded audiences can be created at the campaign level. When AudienceBuilder.exclude() is called, an excluded audience will be created in this campaign.

  22. def newKeywordBuilder(): DisplayKeywordBuilder

    Permalink

    Returns a new display keyword builder for this campaign.

    Returns a new display keyword builder for this campaign. Only excluded display keywords can be created at the campaign level. When DisplayKeywordBuilder.exclude() is called, an excluded display keyword will be created in this campaign.

  23. def newPlacementBuilder(): PlacementBuilder

    Permalink

    Returns a new placement builder for this campaign.

    Returns a new placement builder for this campaign. Only excluded placements can be created at the campaign level. When PlacementBuilder.exclude() is called, an excluded placement will be created in this campaign.

  24. def newTopicBuilder(): TopicBuilder

    Permalink

    Returns a new topic builder for this campaign.

    Returns a new topic builder for this campaign. Only excluded topics can be created at the campaign level. When TopicBuilder.exclude() is called, an excluded topic will be created in this campaign.

  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 all ad groups in the campaign.

    Returns the selector of all website placements in all ad groups in the campaign. 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 all ad groups in the campaign.

  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