Class: Calendly::Guest

Inherits:
Object
  • Object
show all
Includes:
ModelUtils
Defined in:
lib/calendly/models/guest.rb

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_atTime

Returns:

  • (Time)


14
15
16
# File 'lib/calendly/models/guest.rb', line 14

def created_at
  @created_at
end

#emailString

Returns:

  • (String)


11
12
13
# File 'lib/calendly/models/guest.rb', line 11

def email
  @email
end

#updated_atTime

Returns:

  • (Time)


17
18
19
# File 'lib/calendly/models/guest.rb', line 17

def updated_at
  @updated_at
end