Struct google_calendar3::EventAttendee [] [src]

pub struct EventAttendee {
    pub comment: Option<String>,
    pub display_name: Option<String>,
    pub self_: Option<bool>,
    pub email: Option<String>,
    pub id: Option<String>,
    pub additional_guests: Option<i32>,
    pub resource: Option<bool>,
    pub organizer: Option<bool>,
    pub optional: Option<bool>,
    pub response_status: Option<String>,
}

There is no detailed description.

This type is not used in any activity, and only used as part of another schema.

Fields

The attendee's response comment. Optional.

The attendee's name, if available. Optional.

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

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.

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

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

Whether the attendee is a resource. Read-only. The default is False.

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

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

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.

Trait Implementations

impl Default for EventAttendee
[src]

[src]

Returns the "default value" for a type. Read more

impl Clone for EventAttendee
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for EventAttendee
[src]

[src]

Formats the value using the given formatter.

impl Part for EventAttendee
[src]