export interface Actor { /** * The actor's Profile ID, if available. It corresponds to the id field in the People collection of the Google+ API */ id?: string; /** * The actor's email address, if available. */ email?: string; /** * The actor's name, if available. */ displayName?: string; /** * Whether the actor corresponds to the calendar on which this copy of the event appears. Read-only. The default is False. */ self?: boolean; } //# sourceMappingURL=Actor.d.ts.map