Class: Google::Apis::CalendarV3::Event::ExtendedProperties
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::CalendarV3::Event::ExtendedProperties
 
- Defined in:
- generated/google/apis/calendar_v3/classes.rb,
 generated/google/apis/calendar_v3/representations.rb,
 generated/google/apis/calendar_v3/representations.rb
Overview
Extended properties of the event.
Instance Attribute Summary collapse
- 
  
    
      #private  ⇒ Hash<String,String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Properties that are private to the copy of the event that appears on this calendar. 
- 
  
    
      #shared  ⇒ Hash<String,String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Properties that are shared between copies of the event on other attendees' calendars. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ExtendedProperties 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ExtendedProperties. 
- 
  
    
      #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) ⇒ ExtendedProperties
Returns a new instance of ExtendedProperties
| 1381 1382 1383 | # File 'generated/google/apis/calendar_v3/classes.rb', line 1381 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#private ⇒ Hash<String,String>
Properties that are private to the copy of the event that appears on this
calendar.
Corresponds to the JSON property private
| 1373 1374 1375 | # File 'generated/google/apis/calendar_v3/classes.rb', line 1373 def private @private end | 
#shared ⇒ Hash<String,String>
Properties that are shared between copies of the event on other attendees'
calendars.
Corresponds to the JSON property shared
| 1379 1380 1381 | # File 'generated/google/apis/calendar_v3/classes.rb', line 1379 def shared @shared end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1386 1387 1388 1389 | # File 'generated/google/apis/calendar_v3/classes.rb', line 1386 def update!(**args) @private = args[:private] if args.key?(:private) @shared = args[:shared] if args.key?(:shared) end |