[][src]Struct google_adexchangebuyer2_v2_beta1::Creative

pub struct Creative {
    pub corrections: Option<Vec<Correction>>,
    pub impression_tracking_urls: Option<Vec<String>>,
    pub agency_id: Option<String>,
    pub ad_technology_providers: Option<AdTechnologyProviders>,
    pub declared_click_through_urls: Option<Vec<String>>,
    pub detected_languages: Option<Vec<String>>,
    pub advertiser_name: Option<String>,
    pub click_through_urls: Option<Vec<String>>,
    pub open_auction_status: Option<String>,
    pub detected_sensitive_categories: Option<Vec<i32>>,
    pub attributes: Option<Vec<String>>,
    pub deals_status: Option<String>,
    pub creative_id: Option<String>,
    pub detected_advertiser_ids: Option<Vec<String>>,
    pub ad_choices_destination_url: Option<String>,
    pub native: Option<NativeContent>,
    pub vendor_ids: Option<Vec<i32>>,
    pub detected_product_categories: Option<Vec<i32>>,
    pub serving_restrictions: Option<Vec<ServingRestriction>>,
    pub html: Option<HtmlContent>,
    pub version: Option<i32>,
    pub api_update_time: Option<String>,
    pub restricted_categories: Option<Vec<String>>,
    pub detected_domains: Option<Vec<String>>,
    pub video: Option<VideoContent>,
    pub account_id: Option<String>,
}

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

corrections: Option<Vec<Correction>>

Output only. Shows any corrections that were applied to this creative.

impression_tracking_urls: Option<Vec<String>>

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

agency_id: Option<String>

The agency ID for this creative.

ad_technology_providers: Option<AdTechnologyProviders>

Output only. The detected ad technology providers.

declared_click_through_urls: Option<Vec<String>>

The set of declared destination URLs for the creative.

detected_languages: Option<Vec<String>>

Output only. The detected languages for this creative. The order is arbitrary. The codes are 2 or 5 characters and are documented at https://developers.google.com/adwords/api/docs/appendix/languagecodes.

advertiser_name: Option<String>

The name of the company being advertised in the creative.

click_through_urls: Option<Vec<String>>

The set of destination URLs for the creative.

open_auction_status: Option<String>

Output only. The top-level open auction status of this creative. If disapproved, an entry for 'auctionType = OPEN_AUCTION' (or 'ALL') in serving_restrictions will also exist. Note that this may be nuanced with other contextual restrictions, in which case, it may be preferable to read from serving_restrictions directly. Can be used to filter the response of the creatives.list method.

detected_sensitive_categories: Option<Vec<i32>>

Output only. Detected sensitive categories, if any. See the ad-sensitive-categories.txt file in the technical documentation for a list of IDs. You should use these IDs along with the excluded-sensitive-category field in the bid request to filter your bids.

attributes: Option<Vec<String>>

All attributes for the ads that may be shown from this creative. Can be used to filter the response of the creatives.list method.

deals_status: Option<String>

Output only. The top-level deals status of this creative. If disapproved, an entry for 'auctionType=DIRECT_DEALS' (or 'ALL') in serving_restrictions will also exist. Note that this may be nuanced with other contextual restrictions, in which case, it may be preferable to read from serving_restrictions directly. Can be used to filter the response of the creatives.list method.

creative_id: Option<String>

The buyer-defined creative ID of this creative. Can be used to filter the response of the creatives.list method.

detected_advertiser_ids: Option<Vec<String>>

Output only. Detected advertiser IDs, if any.

ad_choices_destination_url: Option<String>

The link to AdChoices destination page.

native: Option<NativeContent>

A native creative.

vendor_ids: Option<Vec<i32>>

All vendor IDs for the ads that may be shown from this creative. See https://storage.googleapis.com/adx-rtb-dictionaries/vendors.txt for possible values.

detected_product_categories: Option<Vec<i32>>

Output only. Detected product categories, if any. See the ad-product-categories.txt file in the technical documentation for a list of IDs.

serving_restrictions: Option<Vec<ServingRestriction>>

Output only. The granular status of this ad in specific contexts. A context here relates to where something ultimately serves (for example, a physical location, a platform, an HTTPS vs HTTP request, or the type of auction).

html: Option<HtmlContent>

An HTML creative.

version: Option<i32>

Output only. The version of this creative.

api_update_time: Option<String>

Output only. The last update timestamp of the creative via API.

restricted_categories: Option<Vec<String>>

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

detected_domains: Option<Vec<String>>

Output only. The detected domains for this creative.

video: Option<VideoContent>

A video creative.

account_id: Option<String>

The account that this creative belongs to. Can be used to filter the response of the creatives.list method.

Trait Implementations

impl ResponseResult for Creative[src]

impl RequestValue for Creative[src]

impl Default for Creative[src]

impl Clone for Creative[src]

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

Performs copy-assignment from source. Read more

impl Debug for Creative[src]

impl Serialize for Creative[src]

impl<'de> Deserialize<'de> for Creative[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]