Class EventUpdateOptions
Options that can be set when creating a meeting request
Inheritance
Namespace: PnP.Core.Model.Teams
Assembly: PnP.Core.dll
Syntax
public class EventUpdateOptions : object
Properties
AllowNewTimeProposals
Allow new time proposals
Declaration
public bool AllowNewTimeProposals { get; set; }
Property Value
System.Boolean
|
Attendees
List of attendees to be invited to the meeting
Declaration
public List<EventAttendeeOptions> Attendees { get; set; }
Property Value
List<EventAttendeeOptions>
|
Body
Body message
Declaration
public string Body { get; set; }
Property Value
System.String
|
BodyContentType
Body content type
Declaration
public EventBodyType BodyContentType { get; }
Property Value
EventBodyType
|
End
End time of the event
Declaration
public DateTime End { get; set; }
Property Value
DateTime
|
EndTimeZone
End time zone
Declaration
public EventTimeZone EndTimeZone { get; set; }
Property Value
EventTimeZone
|
HideAttendees
When set to true, each attendee only sees themselves in the meeting request and meeting Tracking list. Default is false.
Declaration
public bool HideAttendees { get; set; }
Property Value
System.Boolean
|
Importance
The importance of the event. The possible values are: low, normal, high.
Declaration
public EventImportance Importance { get; set; }
Property Value
EventImportance
|
IsAllDay
Set to true if the event lasts all day.
Declaration
public bool IsAllDay { get; set; }
Property Value
System.Boolean
|
IsOnlineMeeting
True if this event has online meeting information, false otherwise. Default is false. Optional.
Declaration
public bool IsOnlineMeeting { get; set; }
Property Value
System.Boolean
|
Location
Location of the event
Declaration
public EventLocationOptions Location { get; set; }
Property Value
EventLocationOptions
|
Locations
Locations of the event. An event can have multiple locations
Declaration
public List<EventLocationOptions> Locations { get; set; }
Property Value
List<EventLocationOptions>
|
OnlineMeetingProvider
Represents the online meeting service provider.
Declaration
public EventOnlineMeetingProvider OnlineMeetingProvider { get; set; }
Property Value
EventOnlineMeetingProvider
|
ResponseRequested
Set to true if the sender would like a response when the event is accepted or declined.
Declaration
public bool ResponseRequested { get; set; }
Property Value
System.Boolean
|
Sensitivity
The sensitivity of the event.
Declaration
public EventSensitivity Sensitivity { get; set; }
Property Value
EventSensitivity
|
ShowAs
Start
Start time of the event
Declaration
public DateTime Start { get; set; }
Property Value
DateTime
|
StartTimeZone
Start time zone
Declaration
public EventTimeZone StartTimeZone { get; set; }
Property Value
EventTimeZone
|
Subject
Subject property
Declaration
public string Subject { get; set; }
Property Value
System.String
|