require_relative '../resource' module Tickethub class Supplier::Channel < Resource path '/supplier/channels' require_relative 'product' require_relative '../token' association :token, Tickethub::Token association :product, Supplier::Product attribute :updated_at, type: :datetime attribute :created_at, type: :datetime end end