attendee resource type
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
An event attendee. This can be a person or resource such as a meeting room or equipment, that has been set up as a resource on the Exchange server for the tenant.
Derived from attendeeBase.
Properties
Property | Type | Description |
---|---|---|
emailAddress | emailAddress | Includes the name and SMTP address of the attendee. |
proposedNewTime | timeSlot | An alternate date/time proposed by the attendee for a meeting request to start and end. If the attendee hasn't proposed another time, then this property isn't included in a response of a GET event. |
status | ResponseStatus | The attendee's response (none, accepted, declined, etc.) for the event and date-time that the response was sent. |
type | String | The attendee type: required , optional , resource . |
JSON representation
The following JSON representation shows the resource type.
{
"emailAddress": {"@odata.type": "microsoft.graph.emailAddress"},
"proposedNewTime": {"@odata.type": "microsoft.graph.timeSlot"},
"status": {"@odata.type": "microsoft.graph.responseStatus"},
"type": "String"
}