Sha256: c95d3aba7d5cad263a389dcb2ce618fb7aec4919056cdedcbff8eb04227b42dc
Contents?: true
Size: 634 Bytes
Versions: 6
Compression:
Stored size: 634 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 booking channels that can exist. class BookingChannelType < TypesafeEnum::Base new :TelephoneAdvanceBooking, "https://openactive.io/ns-beta#TelephoneAdvanceBooking" new :TelephonePrepayment, "https://openactive.io/ns-beta#TelephonePrepayment" new :OnlineAdvanceBooking, "https://openactive.io/ns-beta#OnlineAdvanceBooking" new :OnlinePrepayment, "https://openactive.io/ns-beta#OnlinePrepayment" end end end
Version data entries
6 entries across 6 versions & 1 rubygems