require_relative '../resource' module Tickethub class Channel::Tax < Resource path '/channel/taxes' require_relative 'fee' collection :fees, Channel::Fee attribute :updated_at, type: :datetime attribute :created_at, type: :datetime end end