BookProduct
public struct BookProduct : Equatable, Codable
                Product info
- 
                  
                  
Vehicle’s product ID
Declaration
Swift
public let vehicleId: String - 
                  
                  
Pick Up date in the format “yyyy-MM-dd’T'hh:mm”
Declaration
Swift
public let pickUpDateTime: String - 
                  
                  
Unique id for the pick up location
Declaration
Swift
public let pickUpDepotId: String - 
                  
                  
Drop Off date in the format “yyyy-MM-dd’T'hh:mm”
Declaration
Swift
public let dropOffDateTime: String - 
                  
                  
Unique id for the drop off location
Declaration
Swift
public let dropOffDepotId: String - 
                  
                  
Extras if selected, or an empty list
Declaration
Swift
public let extras: [Extra] - 
                  
                  
Insurance if selected, or an empty list
Declaration
Swift
public let insurance: [Insurance] - 
                  
                  
Pay now and/or pay at desk prices with currencies
Declaration
Swift
public let acceptedPrice: AcceptedPrice - 
                  
                  
Booking signature
Declaration
Swift
public let signature: String 
View on GitHub
        BookProduct Structure Reference