Struct google_adexchangebuyer2_v2_beta1::AbsoluteDateRange[][src]

pub struct AbsoluteDateRange {
    pub start_date: Option<Date>,
    pub end_date: Option<Date>,
}

An absolute date range, specified by its start date and end date. The supported range of dates begins 30 days before today and ends today. Validity checked upon filter set creation. If a filter set with an absolute date range is run at a later date more than 30 days after start_date, it will fail.

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

Fields

The start date of the range (inclusive). Must be within the 30 days leading up to current date, and must be equal to or before end_date.

The end date of the range (inclusive). Must be within the 30 days leading up to current date, and must be equal to or after start_date.

Trait Implementations

impl Default for AbsoluteDateRange
[src]

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

impl Clone for AbsoluteDateRange
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AbsoluteDateRange
[src]

Formats the value using the given formatter. Read more

impl Part for AbsoluteDateRange
[src]

Auto Trait Implementations