Struct google_adexchangebuyer2_v2_beta1::RelativeDateRange[][src]

pub struct RelativeDateRange {
    pub duration_days: Option<i32>,
    pub offset_days: Option<i32>,
}

A relative date range, specified by an offset and a duration. The supported range of dates begins 30 days before today and ends today. I.e. the limits for these values are: offset_days >= 0 duration_days >= 1 offset_days + duration_days <= 30

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

Fields

The number of days in the requested date range. E.g. for a range spanning today, 1. For a range spanning the last 7 days, 7.

The end date of the filter set, specified as the number of days before today. E.g. for a range where the last date is today, 0.

Trait Implementations

impl Default for RelativeDateRange
[src]

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

impl Clone for RelativeDateRange
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for RelativeDateRange
[src]

Formats the value using the given formatter. Read more

impl Part for RelativeDateRange
[src]

Auto Trait Implementations