Class: Google::Apis::CalendarV3::Event::Creator

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/calendar_v3/classes.rb,
generated/google/apis/calendar_v3/representations.rb,
generated/google/apis/calendar_v3/representations.rb

Overview

The creator of the event. Read-only.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Creator

Returns a new instance of Creator



1036
1037
1038
# File 'generated/google/apis/calendar_v3/classes.rb', line 1036

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#display_nameString

The creator's name, if available. Corresponds to the JSON property displayName

Returns:

  • (String)


1016
1017
1018
# File 'generated/google/apis/calendar_v3/classes.rb', line 1016

def display_name
  @display_name
end

#emailString

The creator's email address, if available. Corresponds to the JSON property email

Returns:

  • (String)


1021
1022
1023
# File 'generated/google/apis/calendar_v3/classes.rb', line 1021

def email
  @email
end

#idString

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

Returns:

  • (String)


1027
1028
1029
# File 'generated/google/apis/calendar_v3/classes.rb', line 1027

def id
  @id
end

#selfBoolean Also known as: self?

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

Returns:

  • (Boolean)


1033
1034
1035
# File 'generated/google/apis/calendar_v3/classes.rb', line 1033

def self
  @self
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1041
1042
1043
1044
1045
1046
# File 'generated/google/apis/calendar_v3/classes.rb', line 1041

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