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

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

Overview

The creator of the event. Read-only.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Creator

Returns a new instance of Creator.



1416
1417
1418
# File 'lib/google/apis/calendar_v3/classes.rb', line 1416

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)


1397
1398
1399
# File 'lib/google/apis/calendar_v3/classes.rb', line 1397

def display_name
  @display_name
end

#emailString

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

Returns:

  • (String)


1402
1403
1404
# File 'lib/google/apis/calendar_v3/classes.rb', line 1402

def email
  @email
end

#idString

The creator's Profile ID, if available. Corresponds to the JSON property id

Returns:

  • (String)


1407
1408
1409
# File 'lib/google/apis/calendar_v3/classes.rb', line 1407

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)


1413
1414
1415
# File 'lib/google/apis/calendar_v3/classes.rb', line 1413

def self
  @self
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1421
1422
1423
1424
1425
1426
# File 'lib/google/apis/calendar_v3/classes.rb', line 1421

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