Class: Calendly::Guest
Overview
Calendly’s guest model. Additional people added to an event by an invitee.
Constant Summary
collapse
- TIME_FIELDS =
%i[created_at updated_at].freeze
Constants included
from ModelUtils
ModelUtils::UUID_FORMAT
Instance Attribute Summary collapse
Method Summary
Methods included from ModelUtils
#client, #id, included, #initialize, #inspect
Instance Attribute Details
#created_at ⇒ Time
14
15
16
|
# File 'lib/calendly/models/guest.rb', line 14
def created_at
@created_at
end
|
#email ⇒ String
11
12
13
|
# File 'lib/calendly/models/guest.rb', line 11
def email
@email
end
|
#updated_at ⇒ Time
17
18
19
|
# File 'lib/calendly/models/guest.rb', line 17
def updated_at
@updated_at
end
|