Table of Contents

Class EventsResource.InstancesRequest

Namespace
Google.Apis.Calendar.v3
Assembly
Google.Apis.Calendar.v3.dll

Returns instances of the specified recurring event.

public class EventsResource.InstancesRequest : CalendarBaseServiceRequest<Events>
Inheritance
EventsResource.InstancesRequest
Inherited Members

Constructors

InstancesRequest(IClientService, string, string)

Constructs a new Instances request.

public InstancesRequest(IClientService service, string calendarId, string eventId)

Parameters

service IClientService
calendarId string
eventId string

Properties

AlwaysIncludeEmail

Whether to always include a value in the email field for the organizer, creator and attendees, even if no real email is available (i.e. a generated, non-working value will be provided). The use of this option is discouraged and should only be used by clients which cannot handle the absence of an email address value in the mentioned places. Optional. The default is False.

public virtual bool? AlwaysIncludeEmail { get; set; }

Property Value

bool?

CalendarId

Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary" keyword.

public virtual string CalendarId { get; }

Property Value

string

EventId

Recurring event identifier.

public virtual string EventId { get; }

Property Value

string

HttpMethod

Gets the HTTP method.

public override string HttpMethod { get; }

Property Value

string

MaxAttendees

The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned. Optional.

public virtual int? MaxAttendees { get; set; }

Property Value

int?

MaxResults

Maximum number of events returned on one result page. By default the value is 250 events. The page size can never be larger than 2500 events. Optional.

public virtual int? MaxResults { get; set; }

Property Value

int?

MethodName

Gets the method name.

public override string MethodName { get; }

Property Value

string

OriginalStart

The original start time of the instance in the result. Optional.

public virtual string OriginalStart { get; set; }

Property Value

string

PageToken

Token specifying which result page to return. Optional.

public virtual string PageToken { get; set; }

Property Value

string

RestPath

Gets the REST path.

public override string RestPath { get; }

Property Value

string

ShowDeleted

Whether to include deleted events (with status equals "cancelled") in the result. Cancelled instances of recurring events will still be included if singleEvents is False. Optional. The default is False.

public virtual bool? ShowDeleted { get; set; }

Property Value

bool?

TimeMax

Upper bound (exclusive) for an event's start time to filter by. Optional. The default is not to filter by start time. Must be an RFC3339 timestamp with mandatory time zone offset.

public virtual DateTime? TimeMax { get; set; }

Property Value

DateTime?

TimeMin

Lower bound (inclusive) for an event's end time to filter by. Optional. The default is not to filter by end time. Must be an RFC3339 timestamp with mandatory time zone offset.

public virtual DateTime? TimeMin { get; set; }

Property Value

DateTime?

TimeZone

Time zone used in the response. Optional. The default is the time zone of the calendar.

public virtual string TimeZone { get; set; }

Property Value

string

Methods

InitParameters()

Initializes Instances parameter list.

protected override void InitParameters()