Struct google_adexchangebuyer2_v2_beta1::FilterSet[][src]

pub struct FilterSet {
    pub name: Option<String>,
    pub format: Option<String>,
    pub seller_network_ids: Option<Vec<i32>>,
    pub relative_date_range: Option<RelativeDateRange>,
    pub realtime_time_range: Option<RealtimeTimeRange>,
    pub deal_id: Option<String>,
    pub environment: Option<String>,
    pub platforms: Option<Vec<String>>,
    pub absolute_date_range: Option<AbsoluteDateRange>,
    pub formats: Option<Vec<String>>,
    pub creative_id: Option<String>,
    pub time_series_granularity: Option<String>,
}

A set of filters that is applied to a request for data. Within a filter set, an AND operation is performed across the filters represented by each field. An OR operation is performed across the filters represented by the multiple values of a repeated field. E.g. "format=VIDEO AND deal_id=12 AND (seller_network_id=34 OR seller_network_id=56)"

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

A user-defined name of the filter set. Filter set names must be unique globally and match one of the patterns:

  • bidders/*/filterSets/* (for accessing bidder-level troubleshooting data)
  • bidders/*/accounts/*/filterSets/* (for accessing account-level troubleshooting data)

This field is required in create operations.

DEPRECATED: use repeated formats field instead. The format on which to filter; optional.

The list of IDs of the seller (publisher) networks on which to filter; may be empty. The filters represented by multiple seller network IDs are ORed together (i.e. if non-empty, results must match any one of the publisher networks). See seller-network-ids file for the set of existing seller network IDs.

A relative date range, defined by an offset from today and a duration. Interpreted relative to Pacific time zone.

An open-ended realtime time range, defined by the aggregation start timestamp.

The ID of the deal on which to filter; optional. This field may be set only for a filter set that accesses account-level troubleshooting data, i.e. one whose name matches the bidders/*/accounts/*/filterSets/* pattern.

The environment on which to filter; optional.

The list of platforms on which to filter; may be empty. The filters represented by multiple platforms are ORed together (i.e. if non-empty, results must match any one of the platforms).

An absolute date range, defined by a start date and an end date. Interpreted relative to Pacific time zone.

The list of formats on which to filter; may be empty. The filters represented by multiple formats are ORed together (i.e. if non-empty, results must match any one of the formats).

The ID of the creative on which to filter; optional. This field may be set only for a filter set that accesses account-level troubleshooting data, i.e. one whose name matches the bidders/*/accounts/*/filterSets/* pattern.

The granularity of time intervals if a time series breakdown is desired; optional.

Trait Implementations

impl Default for FilterSet
[src]

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

impl Clone for FilterSet
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for FilterSet
[src]

Formats the value using the given formatter. Read more

impl RequestValue for FilterSet
[src]

impl ResponseResult for FilterSet
[src]

Auto Trait Implementations

impl Send for FilterSet

impl Sync for FilterSet