require_relative '../resource' module Tickethub class Supplier::Voucher < Resource path '/supplier/vouchers' require_relative 'reseller' require_relative 'ticket' require_relative 'tier' require_relative 'rate' association :reseller, Supplier::Reseller association :ticket, Supplier::Ticket association :tier, Supplier::Tier association :rate, Supplier::Rate attribute :valid_from, type: :date attribute :expires_on, type: :date attribute :created_at, type: :datetime attribute :updated_at, type: :datetime end end