[][src]Struct google_dfareporting2d8::ClickThroughUrl

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

computed_click_through_url: Option<String>

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: Option<String>

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

landing_page_id: Option<String>

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

default_landing_page: Option<bool>

Whether the campaign default landing page is used.

Trait Implementations

impl Part for ClickThroughUrl[src]

impl Default for ClickThroughUrl[src]

impl Clone for ClickThroughUrl[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for ClickThroughUrl[src]

impl Serialize for ClickThroughUrl[src]

impl<'de> Deserialize<'de> for ClickThroughUrl[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]