Interface ICalAttendeeJSONData

interface ICalAttendeeJSONData {
    delegatedFrom: null | string;
    delegatedTo: null | string;
    email: string;
    mailto: null | string;
    name: null | string;
    role: ICalAttendeeRole;
    rsvp: null | boolean;
    sentBy: null | string;
    status: null | ICalAttendeeStatus;
    type: null | ICalAttendeeType;
    x: { key: string; value: string }[];
}

Properties

delegatedFrom: null | string
delegatedTo: null | string
email: string
mailto: null | string
name: null | string
rsvp: null | boolean
sentBy: null | string
status: null | ICalAttendeeStatus
type: null | ICalAttendeeType
x: { key: string; value: string }[]