BookingOption

public struct BookingOption : Decodable, Equatable

Holds the value for a BookingOption

  • The value of the option. If for example the BookingOptionSet is time, then this would read something like “11:00 am”.

    Declaration

    Swift

    public let value: String
  • A disclaimer for that option. These disclaimers may contain start times and information on levies

    Declaration

    Swift

    public let disclaimer: String?
  • Declaration

    Swift

    public static func == (lhs: BookingOption, rhs: BookingOption) -> Bool