Trait

com.google.appsscript.adwords

MobileAppUrls

Related Doc: package adwords

Permalink

trait MobileAppUrls extends Object with HasFinalUrl

Provides access to mobile app URLs. See Using Upgraded URLs for more information.

Annotations
@RawJSType()
Linear Supertypes
HasFinalUrl, Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MobileAppUrls
  2. HasFinalUrl
  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. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clearMobileFinalUrl(): Unit

    Permalink

    Clears the mobile final URL of the mobile app.

    Clears the mobile final URL of the mobile app.

    Clearing mobile final URL will cause the final URL to be used instead.

    See Using Upgraded URLs for more information.

    Returns nothing.

  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 getCustomParameters(): AnyRef

    Permalink

    Returns the custom parameters of the mobile app.

    Returns the custom parameters of the mobile app.

    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.

    See Using Upgraded URLs for more information.

  12. def getFinalUrl(): String

    Permalink

    Returns the final URL of the entity.

    Returns the final URL of the entity.

    The final URL represents the actual landing page for your entity. The final URL must be the URL of the page that the user ends up on after clicking on your ad, once all the redirects have taken place.

    Final URLs follow the same override rules as destination URLs. For example, a final URL at the keyword level overrides a final URL at an ad level.

    See Using Upgraded URLs for more information.

    Definition Classes
    HasFinalUrl
  13. def getMobileFinalUrl(): String

    Permalink

    Returns the mobile final URL of the mobile app.

    Returns the mobile final URL of the mobile app.

    The mobile final URL represents the actual landing page for your mobile app on a mobile device. The final mobile URL must be the URL of the page that the user ends up on after clicking on your ad on a mobile device, once all the redirects have taken place.

    Mobile final URLs follow the same override rules as destination URLs. For example, a mobile final URL at the keyword level overrides a mobile final URL at an ad level.

    See Using Upgraded URLs for more information.

  14. def getTrackingTemplate(): String

    Permalink

    Returns the tracking template of the mobile app.

    Returns the tracking template of the mobile app.

    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 at the ad group level overrides the setting at the campaign level.

    See Using Upgraded URLs for more information.

  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. final def ne(arg0: AnyRef): Boolean

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

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

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

    Permalink
    Definition Classes
    Object
  23. def setCustomParameters(customParameters: AnyRef): Unit

    Permalink

    Sets the custom parameters of the mobile app.

    Sets the custom parameters of the mobile app.

    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.

    Note that this method will replace any existing custom parameters with the specified value.

    You may pass an empty object, e.g. setCustomParameters({}) to clear the custom parameters of the mobile app. If you clear the custom parameters specified at a lower level entity (e.g. a keyword), and you have also specified custom parameters on a higher level entity, (e.g. the parent ad group), then AdWords will use the custom parameters specified at the higher level entity (i.e. the ad-group-level custom parameters will be used). To completely clear custom parameters, it must be cleared at all levels of the hierarchy at which it was set.

    See Using Upgraded URLs for more information.

    Returns nothing.

  24. def setFinalUrl(finalUrl: String): Unit

    Permalink

    Sets the final URL of the mobile app.

    Sets the final URL of the mobile app.

    The final URL represents the actual landing page for your mobile app. The final URL must be the URL of the page that the user ends up on after clicking on your ad, once all the redirects have taken place.

    Final URLs follow the same override rules as destination URLs. For example, a final URL at the keyword level overrides a final URL at an ad level.

    See Using Upgraded URLs for more information.

    Returns nothing.

  25. def setMobileFinalUrl(mobileFinalUrl: String): Unit

    Permalink

    Sets the mobile final URL of the mobile app.

    Sets the mobile final URL of the mobile app.

    The mobile final URL represents the actual landing page for your mobile app on a mobile device. The final mobile URL must be the URL of the page that the user ends up on after clicking on your ad on a mobile device, once all the redirects have taken place.

    Mobile final URLs follow the same override rules as destination URLs. For example, a mobile final URL at the keyword level overrides a mobile final URL at an ad level.

    See Using Upgraded URLs for more information.

    Returns nothing.

  26. def setTrackingTemplate(trackingTemplate: String): Unit

    Permalink

    Sets the tracking template of the mobile app.

    Sets the tracking template of the mobile app.

    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 at the ad group level overrides the setting at the campaign level.

    See Using Upgraded URLs for more information.

    Returns nothing.

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

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

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

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

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

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

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

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

Inherited from HasFinalUrl

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped