Class: Calendly::EventTypeAvailableTime
- Inherits:
-
Object
- Object
- Calendly::EventTypeAvailableTime
- Includes:
- ModelUtils
- Defined in:
- lib/calendly/models/event_type_available_type.rb
Overview
An available meeting time slot for the given event type.
Constant Summary collapse
- TIME_FIELDS =
%i[start_time].freeze
Constants included from ModelUtils
Instance Attribute Summary collapse
-
#invitees_remaining ⇒ Integer
Total remaining invitees for this available time.
-
#scheduling_url ⇒ Time
The URL of the user’s scheduling site where invitees book this event type.
-
#start_time ⇒ Time
The moment the event was scheduled to start in UTC time.
-
#status ⇒ String
Indicates that the open time slot is “available”.
Method Summary
Methods included from ModelUtils
#client, #id, included, #initialize, #inspect
Instance Attribute Details
#invitees_remaining ⇒ Integer
Total remaining invitees for this available time. For Group Event Type, more than one invitee can book in this available time. For all other Event Types, only one invitee can book in this available time.
17 18 19 |
# File 'lib/calendly/models/event_type_available_type.rb', line 17 def invitees_remaining @invitees_remaining end |
#scheduling_url ⇒ Time
The URL of the user’s scheduling site where invitees book this event type.
25 26 27 |
# File 'lib/calendly/models/event_type_available_type.rb', line 25 def scheduling_url @scheduling_url end |
#start_time ⇒ Time
The moment the event was scheduled to start in UTC time.
21 22 23 |
# File 'lib/calendly/models/event_type_available_type.rb', line 21 def start_time @start_time end |
#status ⇒ String
Indicates that the open time slot is “available”.
11 12 13 |
# File 'lib/calendly/models/event_type_available_type.rb', line 11 def status @status end |