Class: Nylas::FreeBusyCollection
- Inherits:
-
Object
- Object
- Nylas::FreeBusyCollection
- Extended by:
- Forwardable
- Defined in:
- lib/nylas/free_busy_collection.rb
Overview
Helper to get and build `FreeBusy` objects
Instance Method Summary collapse
- #each ⇒ Object
-
#initialize(emails:, start_time:, end_time:, api:) ⇒ FreeBusyCollection
constructor
A new instance of FreeBusyCollection.
Constructor Details
#initialize(emails:, start_time:, end_time:, api:) ⇒ FreeBusyCollection
Returns a new instance of FreeBusyCollection.
10 11 12 13 14 15 |
# File 'lib/nylas/free_busy_collection.rb', line 10 def initialize(emails:, start_time:, end_time:, api:) @api = api @emails = emails @start_time = start_time @end_time = end_time end |