Sha256: 721b67c0460e9d2b555d258518fe0a3f597c13001b371ea414dbc069e5170eed
Contents?: true
Size: 738 Bytes
Versions: 2
Compression:
Stored size: 738 Bytes
Contents
require 'typesafe_enum' module OpenActive module Enums # [NOTICE: This enumeration is part of the Open Booking API Test Interface, and MUST NOT be used in production.] # An enumeration of [open booking flow](https://openactive.io/open-booking-api/EditorsDraft/1.0CR3/#booking-flows) that an [Opportunity and Offer pair](https://openactive.io/open-booking-api/EditorsDraft/1.0CR3/#definition-of-a-bookable-opportunity-and-offer-pair) can be booked with. class TestOpenBookingFlowEnumeration < TypesafeEnum::Base new :OpenBookingSimpleFlow, "https://openactive.io/test-interface#OpenBookingSimpleFlow" new :OpenBookingApprovalFlow, "https://openactive.io/test-interface#OpenBookingApprovalFlow" end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.5.0 | lib/openactive/enums/test_open_booking_flow_enumeration.rb |
openactive-0.4.0 | lib/openactive/enums/test_open_booking_flow_enumeration.rb |