Struct google_dfareporting3d2::ClickThroughUrl[][src]

pub struct ClickThroughUrl {
    pub computed_click_through_url: Option<String>,
    pub custom_click_through_url: Option<String>,
    pub landing_page_id: Option<String>,
    pub default_landing_page: Option<bool>,
}

Click-through URL

This type is not used in any activity, and only used as part of another schema.

Fields

Read-only convenience field representing the actual URL that will be used for this click-through. The URL is computed as follows:

  • If defaultLandingPage is enabled then the campaign's default landing page URL is assigned to this field.
  • If defaultLandingPage is not enabled and a landingPageId is specified then that landing page's URL is assigned to this field.
  • If neither of the above cases apply, then the customClickThroughUrl is assigned to this field.

Custom click-through URL. Applicable if the defaultLandingPage field is set to false and the landingPageId field is left unset.

ID of the landing page for the click-through URL. Applicable if the defaultLandingPage field is set to false.

Whether the campaign default landing page is used.

Trait Implementations

impl Default for ClickThroughUrl
[src]

Returns the "default value" for a type. Read more

impl Clone for ClickThroughUrl
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ClickThroughUrl
[src]

Formats the value using the given formatter. Read more

impl Part for ClickThroughUrl
[src]

Auto Trait Implementations