Struct google_calendar3::FreeBusyRequest[][src]

pub struct FreeBusyRequest {
    pub calendar_expansion_max: Option<i32>,
    pub time_min: Option<String>,
    pub group_expansion_max: Option<i32>,
    pub time_max: Option<String>,
    pub items: Option<Vec<FreeBusyRequestItem>>,
    pub time_zone: Option<String>,
}

There is no detailed description.

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

Maximal number of calendars for which FreeBusy information is to be provided. Optional. Maximum value is 50.

The start of the interval for the query formatted as per RFC3339.

Maximal number of calendar identifiers to be provided for a single group. Optional. An error is returned for a group with more members than this value. Maximum value is 100.

The end of the interval for the query formatted as per RFC3339.

List of calendars and/or groups to query.

Time zone used in the response. Optional. The default is UTC.

Trait Implementations

impl Default for FreeBusyRequest
[src]

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

impl Clone for FreeBusyRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for FreeBusyRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for FreeBusyRequest
[src]

Auto Trait Implementations