Struct gapi_grpc::google::ads::googleads::v4::common::AppFeedItem[][src]

pub struct AppFeedItem {
    pub link_text: Option<String>,
    pub app_id: Option<String>,
    pub app_store: i32,
    pub final_urls: Vec<String>,
    pub final_mobile_urls: Vec<String>,
    pub tracking_url_template: Option<String>,
    pub url_custom_parameters: Vec<CustomParameter>,
    pub final_url_suffix: Option<String>,
}

Represents an App extension.

Fields

link_text: Option<String>

The visible text displayed when the link is rendered in an ad. This string must not be empty, and the length of this string should be between 1 and 25, inclusive.

app_id: Option<String>

The store-specific ID for the target application. This string must not be empty.

app_store: i32

The application store that the target application belongs to. This field is required.

final_urls: Vec<String>

A list of possible final URLs after all cross domain redirects. This list must not be empty.

final_mobile_urls: Vec<String>

A list of possible final mobile URLs after all cross domain redirects.

tracking_url_template: Option<String>

URL template for constructing a tracking URL. Default value is “{lpurl}”.

url_custom_parameters: Vec<CustomParameter>

A list of mappings to be used for substituting URL custom parameter tags in the tracking_url_template, final_urls, and/or final_mobile_urls.

final_url_suffix: Option<String>

URL template for appending params to landing page URLs served with parallel tracking.

Implementations

impl AppFeedItem[src]

pub fn app_store(&self) -> AppStore[src]

Returns the enum value of app_store, or the default if the field is set to an invalid enum value.

pub fn set_app_store(&mut self, value: AppStore)[src]

Sets app_store to the provided enum value.

Trait Implementations

impl Clone for AppFeedItem[src]

impl Debug for AppFeedItem[src]

impl Default for AppFeedItem[src]

impl Message for AppFeedItem[src]

impl PartialEq<AppFeedItem> for AppFeedItem[src]

impl StructuralPartialEq for AppFeedItem[src]

Auto Trait Implementations

impl RefUnwindSafe for AppFeedItem

impl Send for AppFeedItem

impl Sync for AppFeedItem

impl Unpin for AppFeedItem

impl UnwindSafe for AppFeedItem

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]