[][src]Struct google_dfareporting3d3::CreativeAssignment

pub struct CreativeAssignment {
    pub weight: Option<i32>,
    pub sequence: Option<i32>,
    pub click_through_url: Option<ClickThroughUrl>,
    pub rich_media_exit_overrides: Option<Vec<RichMediaExitOverride>>,
    pub apply_event_tags: Option<bool>,
    pub creative_group_assignments: Option<Vec<CreativeGroupAssignment>>,
    pub companion_creative_overrides: Option<Vec<CompanionClickThroughOverride>>,
    pub start_time: Option<String>,
    pub ssl_compliant: Option<bool>,
    pub active: Option<bool>,
    pub creative_id: Option<String>,
    pub end_time: Option<String>,
    pub creative_id_dimension_value: Option<DimensionValue>,
}

Creative Assignment.

This type is not used in any activity, and only used as part of another schema.

Fields

weight: Option<i32>

Weight of the creative assignment, applicable when the rotation type is CREATIVE_ROTATION_TYPE_RANDOM. Value must be greater than or equal to 1.

sequence: Option<i32>

Sequence number of the creative assignment, applicable when the rotation type is CREATIVE_ROTATION_TYPE_SEQUENTIAL. Acceptable values are 1 to 65535, inclusive.

click_through_url: Option<ClickThroughUrl>

Click-through URL of the creative assignment.

rich_media_exit_overrides: Option<Vec<RichMediaExitOverride>>

Rich media exit overrides for this creative assignment. Applicable when the creative type is any of the following:

  • DISPLAY
  • RICH_MEDIA_INPAGE
  • RICH_MEDIA_INPAGE_FLOATING
  • RICH_MEDIA_IM_EXPAND
  • RICH_MEDIA_EXPANDING
  • RICH_MEDIA_INTERSTITIAL_FLOAT
  • RICH_MEDIA_MOBILE_IN_APP
  • RICH_MEDIA_MULTI_FLOATING
  • RICH_MEDIA_PEEL_DOWN
  • VPAID_LINEAR
  • VPAID_NON_LINEAR
apply_event_tags: Option<bool>

Whether applicable event tags should fire when this creative assignment is rendered. If this value is unset when the ad is inserted or updated, it will default to true for all creative types EXCEPT for INTERNAL_REDIRECT, INTERSTITIAL_INTERNAL_REDIRECT, and INSTREAM_VIDEO.

creative_group_assignments: Option<Vec<CreativeGroupAssignment>>

Creative group assignments for this creative assignment. Only one assignment per creative group number is allowed for a maximum of two assignments.

companion_creative_overrides: Option<Vec<CompanionClickThroughOverride>>

Companion creative overrides for this creative assignment. Applicable to video ads.

start_time: Option<String>

Date and time that the assigned creative should start serving.

ssl_compliant: Option<bool>

Whether the creative to be assigned is SSL-compliant. This is a read-only field that is auto-generated when the ad is inserted or updated.

active: Option<bool>

Whether this creative assignment is active. When true, the creative will be included in the ad's rotation.

creative_id: Option<String>

ID of the creative to be assigned. This is a required field.

end_time: Option<String>

Date and time that the assigned creative should stop serving. Must be later than the start time.

creative_id_dimension_value: Option<DimensionValue>

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

Trait Implementations

impl Part for CreativeAssignment[src]

impl Default for CreativeAssignment[src]

impl Clone for CreativeAssignment[src]

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

Performs copy-assignment from source. Read more

impl Debug for CreativeAssignment[src]

impl Serialize for CreativeAssignment[src]

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