Show / Hide Table of Contents

Class EventAttendee

Inheritance
System.Object
EventAttendee
Implements
IDirectResponseSchema
Namespace: Google.Apis.Calendar.v3.Data
Assembly: Google.Apis.Calendar.v3.dll
Syntax
public class EventAttendee : object, IDirectResponseSchema

Properties

AdditionalGuests

Number of additional guests. Optional. The default is 0.

Declaration
public virtual Nullable<int> AdditionalGuests { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Comment

The attendee's response comment. Optional.

Declaration
public virtual string Comment { get; set; }
Property Value
Type Description
System.String

DisplayName

The attendee's name, if available. Optional.

Declaration
public virtual string DisplayName { get; set; }
Property Value
Type Description
System.String

Email

The attendee's email address, if available. This field must be present when adding an attendee. It must be a valid email address as per RFC5322. Required when adding an attendee.

Declaration
public virtual string Email { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Id

The attendee's Profile ID, if available. It corresponds to the id field in the People collection of the Google+ API

Declaration
public virtual string Id { get; set; }
Property Value
Type Description
System.String

Optional

Whether this is an optional attendee. Optional. The default is False.

Declaration
public virtual Nullable<bool> Optional { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Organizer

Whether the attendee is the organizer of the event. Read-only. The default is False.

Declaration
public virtual Nullable<bool> Organizer { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Resource

Whether the attendee is a resource. Can only be set when the attendee is added to the event for the first time. Subsequent modifications are ignored. Optional. The default is False.

Declaration
public virtual Nullable<bool> Resource { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ResponseStatus

The attendee's response status. Possible values are: - "needsAction" - The attendee has not responded to the invitation. - "declined" - The attendee has declined the invitation. - "tentative" - The attendee has tentatively accepted the invitation. - "accepted" - The attendee has accepted the invitation.

Declaration
public virtual string ResponseStatus { get; set; }
Property Value
Type Description
System.String

Self

Whether this entry represents the calendar on which this copy of the event appears. Read-only. The default is False.

Declaration
public virtual Nullable<bool> Self { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Implements

IDirectResponseSchema
Back to top