Sha256: 4763d58e11fcbb8ca4cb9c7a744cc057f1e98bd0af9ef95fa9eac4310efb46cd
Contents?: true
Size: 1.19 KB
Versions: 3
Compression:
Stored size: 1.19 KB
Contents
require_relative '../resource' module Tickethub class Supplier::Booking < Resource path '/supplier/bookings' require_relative 'rate' require_relative 'order' require_relative 'ticket' require_relative 'voucher' require_relative 'answer' require_relative 'product' require_relative 'variant' require_relative 'message' require_relative 'fee' collection :tickets, Supplier::Ticket collection :vouchers, Supplier::Voucher collection :answers, Supplier::Answer collection :messages, Supplier::Message collection :fees, Supplier::Fee association :order, Supplier::Order association :rate, Supplier::Rate association :coupon, Supplier::Coupon association :product, Supplier::Product association :variant, Supplier::Variant attribute :amount, type: :money attribute :tax, type: :money attribute :total, type: :money attribute :currency, type: :currency attribute :valid_from, type: :datetime attribute :expires_at, type: :datetime attribute :timeout_at, type: :datetime attribute :created_at, type: :datetime attribute :updated_at, type: :datetime attribute :cancelled_at, type: :datetime end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
tickethub-0.0.6 | lib/tickethub/supplier/booking.rb |
tickethub-0.0.5 | lib/tickethub/supplier/booking.rb |
tickethub-0.0.4 | lib/tickethub/supplier/booking.rb |