Class: Google::Apis::CalendarV3::FreeBusyGroup
- Inherits:
-
Object
- Object
- Google::Apis::CalendarV3::FreeBusyGroup
- 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
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.
Constructor Details
#initialize(**args) ⇒ FreeBusyGroup
Returns a new instance of FreeBusyGroup.
2249 2250 2251 |
# File 'lib/google/apis/calendar_v3/classes.rb', line 2249 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
2242 2243 2244 |
# File 'lib/google/apis/calendar_v3/classes.rb', line 2242 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
2247 2248 2249 |
# File 'lib/google/apis/calendar_v3/classes.rb', line 2247 def errors @errors end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2254 2255 2256 2257 |
# File 'lib/google/apis/calendar_v3/classes.rb', line 2254 def update!(**args) @calendars = args[:calendars] if args.key?(:calendars) @errors = args[:errors] if args.key?(:errors) end |