class Google::Apis::CalendarV3::Event::Creator
The creator of the event. Read-only.
Attributes
The creator's name, if available. Corresponds to the JSON property `displayName` @return [String]
The creator's email address, if available. Corresponds to the JSON property `email` @return [String]
The creator'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 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]
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
# File generated/google/apis/calendar_v3/classes.rb, line 969 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/calendar_v3/classes.rb, line 974 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