BookingOptionSet

public struct BookingOptionSet : Decodable

Some experiences require an additional booking option for the availability as well as the booking. An exmaple of this might be the different times a certain tour is offered.

  • The label for the options. In the time example this would read “Time”

    Declaration

    Swift

    public let label: String
  • The availabile BookingOptions in this set.

    Declaration

    Swift

    public let options: [BookingOption]