Sha256: 7ffe21d9dd859486ae275a0346f61cae601319a56eb69aa2477b09dcfa3451fa
Contents?: true
Size: 473 Bytes
Versions: 4
Compression:
Stored size: 473 Bytes
Contents
require 'typesafe_enum' module OpenActive module Enums class OrderItemStatus < TypesafeEnum::Base new :SellerCancelled, "https://openactive.io/SellerCancelled" new :CustomerCancelled, "https://openactive.io/CustomerCancelled" new :OrderItemConfirmed, "https://openactive.io/OrderItemConfirmed" new :AttendeeAttended, "https://openactive.io/AttendeeAttended" new :AttendeeAbsent, "https://openactive.io/AttendeeAbsent" end end end
Version data entries
4 entries across 4 versions & 1 rubygems