Class: Calendly::InviteeCancellation

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

Overview

Calendly’s invitee cancellation model. Provides data pertaining to the cancellation of the Invitee.

Constant Summary

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

#canceled_byString

Returns Name of the person whom canceled.

Returns:

  • (String)

    Name of the person whom canceled.



10
11
12
# File 'lib/calendly/models/invitee_cancellation.rb', line 10

def canceled_by
  @canceled_by
end

#canceler_typeString

Returns Allowed values: host or invitee.

Returns:

  • (String)

    Allowed values: host or invitee.



16
17
18
# File 'lib/calendly/models/invitee_cancellation.rb', line 16

def canceler_type
  @canceler_type
end

#reasonString

Returns Reason that the cancellation occurred.

Returns:

  • (String)

    Reason that the cancellation occurred.



13
14
15
# File 'lib/calendly/models/invitee_cancellation.rb', line 13

def reason
  @reason
end