Trait

com.google.appsscript.adwords

Platform

Related Doc: package adwords

Permalink

trait Platform extends Object with HasBidModifier with HasStatistics

Represents an AdWords device target (either desktop, mobile, or tablet).

Annotations
@RawJSType()
Linear Supertypes
HasStatistics, HasBidModifier, Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Platform
  2. HasStatistics
  3. HasBidModifier
  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 clone(): AnyRef

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

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. def getBidModifier(): Double

    Permalink

    Returns the bid modifier for this proximity.

    Returns the bid modifier for this proximity.

    The bid modifier is a multiplier applied to bids which match this proximity. 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 a bid of $5.50.

    The bid modifiers for all matching criteria are multiplied together to calculate the actual bid modification. A campaign with the following bid modifiers:

    Type Value Bid Modifier
    Location Laos 1.3
    Ad Schedule Saturday 6AM-10AM 0.9
    Platform Mobile 1.1
    would have a combined bid modifier of 1.3 * 0.9 * 1.1 = 1.287 , so a bid of $10 would get increased to $12.87 for clicks by Laotian smartphone users on Saturday mornings in the account timezone.

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

    Definition Classes
    HasBidModifier
  10. def getCampaign(): Campaign

    Permalink

    Returns the campaign to which this platform belongs.

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

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

    Permalink

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

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

  13. def getId(): Long

    Permalink

    Returns the ID of the platform.

    Returns the ID of the platform.

    Platform IDs are shared across campaigns. Specifically, desktop targets have ID 30000, mobile targets have ID 30001, and tablet targets have ID 30002. In order to uniquely identify a platform target, one must specify both its campaign ID and the platform ID.

  14. def getName(): String

    Permalink

    Returns the name of this platform.

    Returns the name of this platform.

    This will be "Desktop" for desktop targets, "HighEndMobile" for mobile targets, or "Tablet" for tablet targets.

  15. 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
  16. def hasOwnProperty(v: String): Boolean

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    Object
  24. def setBidModifier(modifier: Double): Unit

    Permalink

    Sets the bid modifier for this proximity.

    Sets the bid modifier for this proximity.

    The bid modifier is a multiplier applied to bids which match this proximity. 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 a bid of $5.50.

    The bid modifiers for all matching criteria are multiplied together to calculate the actual bid modification. A campaign with the following bid modifiers:

    Type Value Bid Modifier
    Location Laos 1.3
    Ad Schedule Saturday 6AM-10AM 0.9
    Platform Mobile 1.1
    would have a combined bid modifier of 1.3 * 0.9 * 1.1 = 1.287 , so a bid of $10 would get increased to $12.87 for clicks by Laotian smartphone users on Saturday mornings in the account timezone.

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

    For proximities, acceptable bid modifiers are in the range 0.1 to 10.

    Returns nothing.

    Definition Classes
    HasBidModifier
  25. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

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

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

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

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

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

Inherited from HasStatistics

Inherited from HasBidModifier

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped