ItineraryItem
public struct ItineraryItem : Decodable
Undocumented
-
The product identifier
Declaration
Swift
public let id: String -
A display image
Declaration
Swift
public let thumbnailURL: URL? -
The order identifier
Declaration
Swift
public let orderId: String? -
Type
Declaration
Swift
public let type: ItineraryItemType -
A title
Declaration
Swift
public let title: String -
A secondary title
Declaration
Swift
public let subTitle: String -
Date in which item begins
Declaration
Swift
public let startDate: Date -
Date in which item completes
Declaration
Swift
public let endDate: Date? -
Duration in hours
Declaration
Swift
public let duration: TimeInterval? -
Coordinate representing item’s initial location
Declaration
Swift
public let startLocation: Coordinate? -
Coordinate representing item’s final location
Declaration
Swift
public let endLocation: Coordinate? -
Quantity of item
Declaration
Swift
public let quantity: Int? -
Denotes if item takes place all day long
Declaration
Swift
public let isAllDay: Bool -
Declaration
Swift
public init(from decoder: Decoder) throws
ItineraryItem Structure Reference