class Google::Apis::CalendarV3::Event::Creator
The creator of the event. Read-only.
Attributes
display_name[RW]
The creator's name, if available. Corresponds to the JSON property `displayName` @return [String]
email[RW]
The creator's email address, if available. Corresponds to the JSON property `email` @return [String]
id[RW]
The creator's Profile ID, if available. Corresponds to the JSON property `id` @return [String]
self[RW]
Whether the creator 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 creator 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 1408 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 1413 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