Class: Google::Apis::CalendarV3::FreeBusyRequest
- Inherits:
-
Object
- Object
- Google::Apis::CalendarV3::FreeBusyRequest
- 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 more...
Instance Attribute Summary collapse
-
#calendar_expansion_max ⇒ Fixnum
Maximal number of calendars for which FreeBusy information is to be provided.
-
#group_expansion_max ⇒ Fixnum
Maximal number of calendar identifiers to be provided for a single group.
-
#items ⇒ Array<Google::Apis::CalendarV3::FreeBusyRequestItem>
List of calendars and/or groups to query.
-
#time_max ⇒ DateTime
The end of the interval for the query formatted as per RFC3339.
-
#time_min ⇒ DateTime
The start of the interval for the query formatted as per RFC3339.
-
#time_zone ⇒ String
Time zone used in the response.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FreeBusyRequest
constructor
A new instance of FreeBusyRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ FreeBusyRequest
Returns a new instance of FreeBusyRequest.
2209 2210 2211 |
# File 'lib/google/apis/calendar_v3/classes.rb', line 2209 def initialize(**args) update!(**args) end |
Instance Attribute Details
#calendar_expansion_max ⇒ Fixnum
Maximal number of calendars for which FreeBusy information is to be provided.
Optional. Maximum value is 50.
Corresponds to the JSON property calendarExpansionMax
2180 2181 2182 |
# File 'lib/google/apis/calendar_v3/classes.rb', line 2180 def calendar_expansion_max @calendar_expansion_max end |
#group_expansion_max ⇒ Fixnum
Maximal number of calendar identifiers to be provided for a single group.
Optional. An error is returned for a group with more members than this value.
Maximum value is 100.
Corresponds to the JSON property groupExpansionMax
2187 2188 2189 |
# File 'lib/google/apis/calendar_v3/classes.rb', line 2187 def group_expansion_max @group_expansion_max end |
#items ⇒ Array<Google::Apis::CalendarV3::FreeBusyRequestItem>
List of calendars and/or groups to query.
Corresponds to the JSON property items
2192 2193 2194 |
# File 'lib/google/apis/calendar_v3/classes.rb', line 2192 def items @items end |
#time_max ⇒ DateTime
The end of the interval for the query formatted as per RFC3339.
Corresponds to the JSON property timeMax
2197 2198 2199 |
# File 'lib/google/apis/calendar_v3/classes.rb', line 2197 def time_max @time_max end |
#time_min ⇒ DateTime
The start of the interval for the query formatted as per RFC3339.
Corresponds to the JSON property timeMin
2202 2203 2204 |
# File 'lib/google/apis/calendar_v3/classes.rb', line 2202 def time_min @time_min end |
#time_zone ⇒ String
Time zone used in the response. Optional. The default is UTC.
Corresponds to the JSON property timeZone
2207 2208 2209 |
# File 'lib/google/apis/calendar_v3/classes.rb', line 2207 def time_zone @time_zone end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2214 2215 2216 2217 2218 2219 2220 2221 |
# File 'lib/google/apis/calendar_v3/classes.rb', line 2214 def update!(**args) @calendar_expansion_max = args[:calendar_expansion_max] if args.key?(:calendar_expansion_max) @group_expansion_max = args[:group_expansion_max] if args.key?(:group_expansion_max) @items = args[:items] if args.key?(:items) @time_max = args[:time_max] if args.key?(:time_max) @time_min = args[:time_min] if args.key?(:time_min) @time_zone = args[:time_zone] if args.key?(:time_zone) end |