Class: Google::Apis::CalendarV3::ConferenceSolution

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

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) ⇒ ConferenceSolution

Returns a new instance of ConferenceSolution



755
756
757
# File 'generated/google/apis/calendar_v3/classes.rb', line 755

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

Instance Attribute Details

#icon_uriString

The user-visible icon for this solution. Corresponds to the JSON property iconUri

Returns:

  • (String)


743
744
745
# File 'generated/google/apis/calendar_v3/classes.rb', line 743

def icon_uri
  @icon_uri
end

#keyGoogle::Apis::CalendarV3::ConferenceSolutionKey

The key which can uniquely identify the conference solution for this event. Corresponds to the JSON property key



748
749
750
# File 'generated/google/apis/calendar_v3/classes.rb', line 748

def key
  @key
end

#nameString

The user-visible name of this solution. Not localized. Corresponds to the JSON property name

Returns:

  • (String)


753
754
755
# File 'generated/google/apis/calendar_v3/classes.rb', line 753

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



760
761
762
763
764
# File 'generated/google/apis/calendar_v3/classes.rb', line 760

def update!(**args)
  @icon_uri = args[:icon_uri] if args.key?(:icon_uri)
  @key = args[:key] if args.key?(:key)
  @name = args[:name] if args.key?(:name)
end