Sha256: 57a75cdc36856c6e42a45760d0e635a3ae6c0296179d29a8d6c7094f11d9fbf2

Contents?: true

Size: 523 Bytes

Versions: 2

Compression:

Stored size: 523 Bytes

Contents

# frozen_string_literal: true

require 'calendly/models/model_utils'

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

2 entries across 2 versions & 1 rubygems

Version Path
calendly-0.8.3 lib/calendly/models/invitee_cancellation.rb
calendly-0.8.2 lib/calendly/models/invitee_cancellation.rb