Sha256: c99879e46c6dc0c77ece2f5252208a4e850f44764f4ff7a349f8be3b7e45aa87

Contents?: true

Size: 1.11 KB

Versions: 6

Compression:

Stored size: 1.11 KB

Contents

require_relative '../resource'

module Tickethub
  class Supplier::Reseller < Resource
    path '/supplier/resellers'

    require_relative 'invoice'
    require_relative 'product'
    require_relative 'message'
    require_relative 'channel'
    require_relative 'broadcast'
    require_relative 'rate'

    require_relative '../contact'
    require_relative '../address'

    collection_method :broadcast do |params|
      Tickethub::Broadcast.call self.endpoint, post(:broadcast, params)
    end

    collection :invoices, Supplier::Invoice
    collection :products, Supplier::Product
    collection :messages, Supplier::Message
    collection :channels, Supplier::Channel
    collection :rates, Supplier::Rate

    association :contact, Tickethub::Contact
    association :address, Tickethub::Address

    attribute :period, type: :duration
    attribute :notice, type: :duration
    attribute :currency, type: :currency

    attribute :limit, type: :money
    attribute :balance, type: :money
    attribute :overdue, type: :money

    attribute :next_invoice_date, type: :date
    attribute :first_invoice_date, type: :date
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
tickethub-0.3.93 lib/tickethub/supplier/reseller.rb
tickethub-0.3.92 lib/tickethub/supplier/reseller.rb
tickethub-0.3.91 lib/tickethub/supplier/reseller.rb
tickethub-0.3.90 lib/tickethub/supplier/reseller.rb
tickethub-0.3.89 lib/tickethub/supplier/reseller.rb
tickethub-0.3.88 lib/tickethub/supplier/reseller.rb