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

display_name[RW]

The organizer's name, if available. Corresponds to the JSON property `displayName` @return [String]

email[RW]

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]

id[RW]

The organizer's Profile ID, if available. Corresponds to the JSON property `id` @return [String]

self[RW]

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]

self?[RW]

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

new(**args) click to toggle source
# File lib/google/apis/calendar_v3/classes.rb, line 1544
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/calendar_v3/classes.rb, line 1549
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