Sha256: d955c0b267d1ac26df3dbd64fd1b7044a1aba7fc9991ec4a5f788d9852cd573b

Contents?: true

Size: 365 Bytes

Versions: 5

Compression:

Stored size: 365 Bytes

Contents

require_relative '../resource'

module Tickethub
  class Reseller::Refund < Resource
    path '/reseller/refunds'

    require_relative 'payment'

    association :payment, Reseller::Payment

    attribute :amount, type: :money
    attribute :currency, type: :currency

    attribute :created_at, type: :datetime
    attribute :updated_at, type: :datetime
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
tickethub-0.3.40 lib/tickethub/reseller/refund.rb
tickethub-0.3.39 lib/tickethub/reseller/refund.rb
tickethub-0.3.38 lib/tickethub/reseller/refund.rb
tickethub-0.3.37 lib/tickethub/reseller/refund.rb
tickethub-0.3.36 lib/tickethub/reseller/refund.rb