Show / Hide Table of Contents

Class FreeBusyRequest

Inheritance
System.Object
FreeBusyRequest
Implements
IDirectResponseSchema
Namespace: Google.Apis.Calendar.v3.Data
Assembly: Google.Apis.Calendar.v3.dll
Syntax
public class FreeBusyRequest : object, IDirectResponseSchema

Properties

CalendarExpansionMax

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

Declaration
public virtual Nullable<int> CalendarExpansionMax { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

GroupExpansionMax

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.

Declaration
public virtual Nullable<int> GroupExpansionMax { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Items

List of calendars and/or groups to query.

Declaration
public virtual IList<FreeBusyRequestItem> Items { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<FreeBusyRequestItem>

TimeMax

System.DateTime representation of TimeMaxRaw.

Declaration
public virtual Nullable<DateTime> TimeMax { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

TimeMaxRaw

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

Declaration
public virtual string TimeMaxRaw { get; set; }
Property Value
Type Description
System.String

TimeMin

System.DateTime representation of TimeMinRaw.

Declaration
public virtual Nullable<DateTime> TimeMin { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

TimeMinRaw

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

Declaration
public virtual string TimeMinRaw { get; set; }
Property Value
Type Description
System.String

TimeZone

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

Declaration
public virtual string TimeZone { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top