ParkingItemSearchParameters

public struct ParkingItemSearchParameters : Decodable

A model containing the search parameters of a ParkingQuery

  • An airport IATA code that represents the airport for which to search available parking

    Declaration

    Swift

    public var airportIATA: String?
  • A BoundingBox specifying the area to search for available parking

    Declaration

    Swift

    public var boundingBox: BoundingBox?
  • A range of dates where parking is available

    Declaration

    Swift

    public var dateRange: ClosedRange<Date>
  • Declaration

    Swift

    public init(from decoder: Decoder) throws