Sha256: 6003eb090490035b1399eb72930259e45f82fd381f4698f8f5ce61187e98f27a
Contents?: true
Size: 484 Bytes
Versions: 7
Compression:
Stored size: 484 Bytes
Contents
# frozen_string_literal: true module Calendly # Calendly's invitee cancellation model. # Provides data pertaining to the cancellation of the Invitee. class InviteeCancellation include ModelUtils # @return [String] Name of the person whom canceled. attr_accessor :canceled_by # @return [String] Reason that the cancellation occurred. attr_accessor :reason # @return [String] Allowed values: host or invitee. attr_accessor :canceler_type end end
Version data entries
7 entries across 7 versions & 1 rubygems