Sha256: 648bc9f7fe4e41f523b2f0a58e735c7ea81ecd3ff2731fce75d334b69a87e896
Contents?: true
Size: 651 Bytes
Versions: 4
Compression:
Stored size: 651 Bytes
Contents
require 'typesafe_enum' module OpenActive module Enums # [NOTICE: This is a beta enumeration, and is highly likely to change in future versions of this library.] # An enumeration of channels through which a booking can be made. class AvailableChannelType < TypesafeEnum::Base new :TelephoneAdvanceBooking, "https://openactive.io/ns-beta#TelephoneAdvanceBooking" new :TelephonePrepayment, "https://openactive.io/ns-beta#TelephonePrepayment" new :OnlinePrepayment, "https://openactive.io/ns-beta#OnlinePrepayment" new :OpenBookingPrepayment, "https://openactive.io/ns-beta#OpenBookingPrepayment" end end end
Version data entries
4 entries across 4 versions & 1 rubygems