-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: openactive-bot <[email protected]>
- Loading branch information
1 parent
d418f2b
commit 92dbab5
Showing
2 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using System.Runtime.Serialization; | ||
|
||
namespace OpenActive.NET | ||
{ | ||
/// <summary> | ||
/// [NOTICE: This enumeration is part of the Open Booking API Test Interface, and MUST NOT be used in production.] | ||
/// An enumeration of open booking flows that an opportunity can be booked with. | ||
/// </summary> | ||
public enum TestOpenBookingFlowEnumeration | ||
{ | ||
[EnumMember(Value = "https://openactive.io/test-interface#OpenBookingSimpleFlow")] | ||
OpenBookingSimpleFlow, | ||
[EnumMember(Value = "https://openactive.io/test-interface#OpenBookingApprovalFlow")] | ||
OpenBookingApprovalFlow | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters