Class: Google::Apis::CalendarV3::ConferenceSolution
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::CalendarV3::ConferenceSolution
 
- 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
- 
  
    
      #icon_uri  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The user-visible icon for this solution. 
- 
  
    
      #key  ⇒ Google::Apis::CalendarV3::ConferenceSolutionKey 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The key which can uniquely identify the conference solution for this event. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The user-visible name of this solution. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ConferenceSolution 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ConferenceSolution. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ConferenceSolution
Returns a new instance of ConferenceSolution
| 800 801 802 | # File 'generated/google/apis/calendar_v3/classes.rb', line 800 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#icon_uri ⇒ String
The user-visible icon for this solution.
Corresponds to the JSON property iconUri
| 788 789 790 | # File 'generated/google/apis/calendar_v3/classes.rb', line 788 def icon_uri @icon_uri end | 
#key ⇒ Google::Apis::CalendarV3::ConferenceSolutionKey
The key which can uniquely identify the conference solution for this event.
Corresponds to the JSON property key
| 793 794 795 | # File 'generated/google/apis/calendar_v3/classes.rb', line 793 def key @key end | 
#name ⇒ String
The user-visible name of this solution. Not localized.
Corresponds to the JSON property name
| 798 799 800 | # File 'generated/google/apis/calendar_v3/classes.rb', line 798 def name @name end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 805 806 807 808 809 | # File 'generated/google/apis/calendar_v3/classes.rb', line 805 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 |