Class EventsResource.InstancesRequest
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
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
EventId
Recurring event identifier.
public virtual string EventId { get; }
Property Value
HttpMethod
Gets the HTTP method.
public override string HttpMethod { get; }
Property Value
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
OriginalStart
The original start time of the instance in the result. Optional.
public virtual string OriginalStart { get; set; }
Property Value
PageToken
Token specifying which result page to return. Optional.
public virtual string PageToken { get; set; }
Property Value
RestPath
Gets the REST path.
public override string RestPath { get; }
Property Value
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
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
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
Methods
InitParameters()
Initializes Instances parameter list.
protected override void InitParameters()