ParkingItemSearchResult
public struct ParkingItemSearchResult : Decodable
A result model representing the ParkingItem
s that were fetched for a given ParkingItemSearchQuery
-
The total number of catalog items matching the given query
Declaration
Swift
public let total: Int
-
An
Array<ParkingItem>
representing the results of the queryDeclaration
Swift
public let items: [Int : ParkingItem]
-
The
BookingItemQuery
that returns this resultDeclaration
Swift
public let query: ParkingItemQuery
-
Undocumented
Declaration
Swift
public func isResultEquivalent(to: ParkingItemSearchResult) -> Bool
-
Undocumented
Declaration
Swift
public func merge(_ result: ParkingItemSearchResult) -> ParkingItemSearchResult?
-
Declaration
Swift
public init(from decoder: Decoder) throws