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.

The start of the interval for the query.

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

The end of the interval for the query.

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]

[src]

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

impl Clone for FreeBusyRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for FreeBusyRequest
[src]

[src]

Formats the value using the given formatter.

impl RequestValue for FreeBusyRequest
[src]