[][src]Struct google_adexchangebuyer1d3::Creative

pub struct Creative {
    pub product_categories: Option<Vec<i32>>,
    pub status: Option<String>,
    pub agency_id: Option<String>,
    pub ad_technology_providers: Option<CreativeAdTechnologyProviders>,
    pub attribute: Option<Vec<i32>>,
    pub restricted_categories: Option<Vec<i32>>,
    pub height: Option<i32>,
    pub advertiser_name: Option<String>,
    pub html_snippet: Option<String>,
    pub buyer_creative_id: Option<String>,
    pub impression_tracking_url: Option<Vec<String>>,
    pub account_id: Option<i32>,
    pub advertiser_id: Option<Vec<String>>,
    pub kind: Option<String>,
    pub video_url: Option<String>,
    pub click_through_url: Option<Vec<String>>,
    pub corrections: Option<Vec<CreativeCorrections>>,
    pub width: Option<i32>,
    pub native_ad: Option<CreativeNativeAd>,
    pub version: Option<i32>,
    pub api_upload_timestamp: Option<String>,
    pub vendor_type: Option<Vec<i32>>,
    pub filtering_reasons: Option<CreativeFilteringReasons>,
    pub disapproval_reasons: Option<Vec<CreativeDisapprovalReasons>>,
    pub sensitive_categories: Option<Vec<i32>>,
}

A creative and its classification data.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

product_categories: Option<Vec<i32>>

Detected product categories, if any. Read-only. This field should not be set in requests.

status: Option<String>

Creative serving status. Read-only. This field should not be set in requests.

agency_id: Option<String>

The agency id for this creative.

ad_technology_providers: Option<CreativeAdTechnologyProviders>

no description provided

attribute: Option<Vec<i32>>

All attributes for the ads that may be shown from this snippet.

restricted_categories: Option<Vec<i32>>

All restricted categories for the ads that may be shown from this snippet.

height: Option<i32>

Ad height.

advertiser_name: Option<String>

The name of the company being advertised in the creative.

html_snippet: Option<String>

The HTML snippet that displays the ad when inserted in the web page. If set, videoURL should not be set.

buyer_creative_id: Option<String>

A buyer-specific id identifying the creative in this ad.

impression_tracking_url: Option<Vec<String>>

The set of urls to be called to record an impression.

account_id: Option<i32>

Account id.

advertiser_id: Option<Vec<String>>

Detected advertiser id, if any. Read-only. This field should not be set in requests.

kind: Option<String>

Resource type.

video_url: Option<String>

The URL to fetch a video ad. If set, HTMLSnippet and the nativeAd should not be set.

click_through_url: Option<Vec<String>>

The set of destination urls for the snippet.

corrections: Option<Vec<CreativeCorrections>>

Shows any corrections that were applied to this creative. Read-only. This field should not be set in requests.

width: Option<i32>

Ad width.

native_ad: Option<CreativeNativeAd>

If nativeAd is set, HTMLSnippet and videoURL should not be set.

version: Option<i32>

The version for this creative. Read-only. This field should not be set in requests.

api_upload_timestamp: Option<String>

The last upload timestamp of this creative if it was uploaded via API. Read-only. The value of this field is generated, and will be ignored for uploads. (formatted RFC 3339 timestamp).

vendor_type: Option<Vec<i32>>

All vendor types for the ads that may be shown from this snippet.

filtering_reasons: Option<CreativeFilteringReasons>

The filtering reasons for the creative. Read-only. This field should not be set in requests.

disapproval_reasons: Option<Vec<CreativeDisapprovalReasons>>

The reasons for disapproval, if any. Note that not all disapproval reasons may be categorized, so it is possible for the creative to have a status of DISAPPROVED with an empty list for disapproval_reasons. In this case, please reach out to your TAM to help debug the issue. Read-only. This field should not be set in requests.

sensitive_categories: Option<Vec<i32>>

Detected sensitive categories, if any. Read-only. This field should not be set in requests.

Trait Implementations

impl Resource for Creative[src]

impl ResponseResult for Creative[src]

impl RequestValue for Creative[src]

impl Clone for Creative[src]

impl Default for Creative[src]

impl Debug for Creative[src]

impl Serialize for Creative[src]

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

Auto Trait Implementations

Blanket Implementations

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

impl<T, U> Into<U> for T where
    U: From<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 = !

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> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<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

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