Interface IGraphRecurrenceRange
Describes a date range over which a recurring event. This shared object is used to define the recurrence of access reviews, calendar events, and access package assignments in Azure AD.
Inherited Members
Namespace: PnP.Core.Model.Teams
Assembly: PnP.Core.dll
Syntax
public interface IGraphRecurrenceRange : IDataModel<IGraphRecurrenceRange>, IDataModelParent, IDataModelWithContext, ISupportModules<IGraphRecurrenceRange>
Properties
EndDate
The date to stop applying the recurrence pattern. Depending on the recurrence pattern of the event, the last occurrence of the meeting may not be this date. Required if type is endDate.
Declaration
DateTime EndDate { get; }
Property Value
DateTime
|
NumberOfOccurrences
The number of times to repeat the event. Required and must be positive if type is numbered.
Declaration
int NumberOfOccurrences { get; }
Property Value
System.Int32
|
RecurrenceTimeZone
Time zone for the startDate and endDate properties. Optional. If not specified, the time zone of the event is used.
Declaration
string RecurrenceTimeZone { get; }
Property Value
System.String
|
StartDate
The date to start applying the recurrence pattern. The first occurrence of the meeting may be this date or later, depending on the recurrence pattern of the event. Must be the same value as the start property of the recurring event. Required.
Declaration
DateTime StartDate { get; }
Property Value
DateTime
|
Type
The recurrence range.
Declaration
EventRecurrenceRangeType Type { get; }
Property Value
EventRecurrenceRangeType
|