Sha256: 201d218aae7ef223cdaadd5282b710dff12736400842ee2fd7d30408fb7247ff

Contents?: true

Size: 494 Bytes

Versions: 6

Compression:

Stored size: 494 Bytes

Contents

require_relative '../resource'

module Tickethub
  class Supplier::Channel < Resource
    path '/supplier/channels'

    require_relative 'partner'
    require_relative 'product'
    require_relative '../token'

    association :private_token, Tickethub::Token
    association :public_token, Tickethub::Token

    association :product, Supplier::Product
    association :partner, Supplier::Partner

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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
tickethub-0.3.49 lib/tickethub/supplier/channel.rb
tickethub-0.3.47 lib/tickethub/supplier/channel.rb
tickethub-0.3.46 lib/tickethub/supplier/channel.rb
tickethub-0.3.45 lib/tickethub/supplier/channel.rb
tickethub-0.3.44 lib/tickethub/supplier/channel.rb
tickethub-0.3.43 lib/tickethub/supplier/channel.rb