class Google::Apis::CalendarV3::Event::Organizer
The organizer of the event. If the organizer is also an attendee, this is indicated with a separate entry in attendees with the organizer field set to True. To change the organizer, use the move operation. Read-only, except when importing an event.
Attributes
The organizer's name, if available. Corresponds to the JSON property `displayName` @return [String]
The organizer's email address, if available. It must be a valid email address as per RFC5322. Corresponds to the JSON property `email` @return [String]
The organizer's Profile ID, if available. It corresponds to theid field in the People collection of the Google+ API Corresponds to the JSON property `id` @return [String]
Whether the organizer corresponds to the calendar on which this copy of the event appears. Read-only. The default is False. Corresponds to the JSON property `self` @return [Boolean]
Whether the organizer corresponds to the calendar on which this copy of the event appears. Read-only. The default is False. Corresponds to the JSON property `self` @return [Boolean]
Public Class Methods
# File generated/google/apis/calendar_v3/classes.rb, line 1105 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/calendar_v3/classes.rb, line 1110 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @email = args[:email] if args.key?(:email) @id = args[:id] if args.key?(:id) @self = args[:self] if args.key?(:self) end