Sha256: 0234a0882d0bcfebaa71797ba5cc93d3c332d73fa619dc3a499c3e7217d999ca

Contents?: true

Size: 1006 Bytes

Versions: 10

Compression:

Stored size: 1006 Bytes

Contents

require_relative '../resource'

module Tickethub
  class Supplier::Payment < Resource
    path '/supplier/payments'

    require_relative 'charge'
    require_relative 'refund'

    require_relative 'payment/cash'
    require_relative 'payment/credit'
    require_relative 'payment/direct'
    require_relative 'payment/stripe'
    require_relative 'payment/paypal'
    require_relative 'payment/external'
    require_relative 'payment/spreedly'
    require_relative 'payment/handpoint'

    require_relative 'order'
    require_relative 'user'

    association :order, Supplier::Order
    association :user, Supplier::User

    collection :refunds, Supplier::Refund
    collection :charges, Supplier::Charge

    attribute :balance, type: :money
    attribute :amount, type: :money
    attribute :refunded, type: :money
    attribute :refunded_at, type: :datetime
    attribute :confirmed_at, type: :datetime

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

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
tickethub-0.3.100 lib/tickethub/supplier/payment.rb
tickethub-0.3.99 lib/tickethub/supplier/payment.rb
tickethub-0.3.98 lib/tickethub/supplier/payment.rb
tickethub-0.3.97 lib/tickethub/supplier/payment.rb
tickethub-0.3.96 lib/tickethub/supplier/payment.rb
tickethub-0.3.95 lib/tickethub/supplier/payment.rb
tickethub-0.3.94 lib/tickethub/supplier/payment.rb
tickethub-0.3.93 lib/tickethub/supplier/payment.rb
tickethub-0.3.92 lib/tickethub/supplier/payment.rb
tickethub-0.3.91 lib/tickethub/supplier/payment.rb