Struct google_dfareporting3d4::api::CreativeAssetMetadata[][src]

pub struct CreativeAssetMetadata {
    pub asset_identifier: Option<CreativeAssetId>,
    pub click_tags: Option<Vec<ClickTag>>,
    pub counter_custom_events: Option<Vec<CreativeCustomEvent>>,
    pub detected_features: Option<Vec<String>>,
    pub exit_custom_events: Option<Vec<CreativeCustomEvent>>,
    pub id: Option<String>,
    pub id_dimension_value: Option<DimensionValue>,
    pub kind: Option<String>,
    pub rich_media: Option<bool>,
    pub timer_custom_events: Option<Vec<CreativeCustomEvent>>,
    pub warned_validation_rules: Option<Vec<String>>,
}

CreativeAssets contains properties of a creative asset file which will be uploaded or has already been uploaded. Refer to the creative sample code for how to upload assets and insert a creative.

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

asset_identifier: Option<CreativeAssetId>

ID of the creative asset. This is a required field.

click_tags: Option<Vec<ClickTag>>

List of detected click tags for assets. This is a read-only, auto-generated field. This field is empty for a rich media asset.

counter_custom_events: Option<Vec<CreativeCustomEvent>>

List of counter events configured for the asset. This is a read-only, auto-generated field and only applicable to a rich media asset.

detected_features: Option<Vec<String>>

List of feature dependencies for the creative asset that are detected by Campaign Manager. Feature dependencies are features that a browser must be able to support in order to render your HTML5 creative correctly. This is a read-only, auto-generated field.

exit_custom_events: Option<Vec<CreativeCustomEvent>>

List of exit events configured for the asset. This is a read-only, auto-generated field and only applicable to a rich media asset.

id: Option<String>

Numeric ID of the asset. This is a read-only, auto-generated field.

id_dimension_value: Option<DimensionValue>

Dimension value for the numeric ID of the asset. This is a read-only, auto-generated field.

kind: Option<String>

Identifies what kind of resource this is. Value: the fixed string “dfareporting#creativeAssetMetadata”.

rich_media: Option<bool>

True if the uploaded asset is a rich media asset. This is a read-only, auto-generated field.

timer_custom_events: Option<Vec<CreativeCustomEvent>>

List of timer events configured for the asset. This is a read-only, auto-generated field and only applicable to a rich media asset.

warned_validation_rules: Option<Vec<String>>

Rules validated during code generation that generated a warning. This is a read-only, auto-generated field. Possible values are: - “ADMOB_REFERENCED” - “ASSET_FORMAT_UNSUPPORTED_DCM” - “ASSET_INVALID” - “CLICK_TAG_HARD_CODED” - “CLICK_TAG_INVALID” - “CLICK_TAG_IN_GWD” - “CLICK_TAG_MISSING” - “CLICK_TAG_MORE_THAN_ONE” - “CLICK_TAG_NON_TOP_LEVEL” - “COMPONENT_UNSUPPORTED_DCM” - “ENABLER_UNSUPPORTED_METHOD_DCM” - “EXTERNAL_FILE_REFERENCED” - “FILE_DETAIL_EMPTY” - “FILE_TYPE_INVALID” - “GWD_PROPERTIES_INVALID” - “HTML5_FEATURE_UNSUPPORTED” - “LINKED_FILE_NOT_FOUND” - “MAX_FLASH_VERSION_11” - “MRAID_REFERENCED” - “NOT_SSL_COMPLIANT” - “ORPHANED_ASSET” - “PRIMARY_HTML_MISSING” - “SVG_INVALID” - “ZIP_INVALID”

Trait Implementations

impl Clone for CreativeAssetMetadata[src]

impl Debug for CreativeAssetMetadata[src]

impl Default for CreativeAssetMetadata[src]

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

impl RequestValue for CreativeAssetMetadata[src]

impl ResponseResult for CreativeAssetMetadata[src]

impl Serialize for CreativeAssetMetadata[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument 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 = 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.