Class: Google::Apis::CalendarV3::FreeBusyGroup
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::CalendarV3::FreeBusyGroup
 
- 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
- 
  
    
      #calendars  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    List of calendars' identifiers within a group. 
- 
  
    
      #errors  ⇒ Array<Google::Apis::CalendarV3::Error> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Optional error(s) (if computation for the group failed). 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ FreeBusyGroup 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of FreeBusyGroup. 
- 
  
    
      #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) ⇒ FreeBusyGroup
Returns a new instance of FreeBusyGroup
| 1891 1892 1893 | # File 'generated/google/apis/calendar_v3/classes.rb', line 1891 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#calendars ⇒ Array<String>
List of calendars' identifiers within a group.
Corresponds to the JSON property calendars
| 1884 1885 1886 | # File 'generated/google/apis/calendar_v3/classes.rb', line 1884 def calendars @calendars end | 
#errors ⇒ Array<Google::Apis::CalendarV3::Error>
Optional error(s) (if computation for the group failed).
Corresponds to the JSON property errors
| 1889 1890 1891 | # File 'generated/google/apis/calendar_v3/classes.rb', line 1889 def errors @errors end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1896 1897 1898 1899 | # File 'generated/google/apis/calendar_v3/classes.rb', line 1896 def update!(**args) @calendars = args[:calendars] if args.key?(:calendars) @errors = args[:errors] if args.key?(:errors) end |