Struct google_dfareporting3::DeliverySchedule[][src]

pub struct DeliverySchedule {
    pub priority: Option<String>,
    pub hard_cutoff: Option<bool>,
    pub frequency_cap: Option<FrequencyCap>,
    pub impression_ratio: Option<String>,
}

Delivery Schedule.

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

Fields

Serving priority of an ad, with respect to other ads. The lower the priority number, the greater the priority with which it is served.

Whether or not hard cutoff is enabled. If true, the ad will not serve after the end date and time. Otherwise the ad will continue to be served until it has reached its delivery goals.

Limit on the number of times an individual user can be served the ad within a specified period of time.

Impression ratio for this ad. This ratio determines how often each ad is served relative to the others. For example, if ad A has an impression ratio of 1 and ad B has an impression ratio of 3, then Campaign Manager will serve ad B three times as often as ad A. Acceptable values are 1 to 10, inclusive.

Trait Implementations

impl Default for DeliverySchedule
[src]

Returns the "default value" for a type. Read more

impl Clone for DeliverySchedule
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DeliverySchedule
[src]

Formats the value using the given formatter. Read more

impl Part for DeliverySchedule
[src]

Auto Trait Implementations