HereSDKDemandVehicle

@interface HereSDKDemandVehicle : NSObject

The ride vehicle

  • Vehicle’s license plate number

    Declaration

    Objective-C

    @property (readonly, nonatomic) NSString *_Nonnull licensePlateNumber;

    Swift

    var licensePlateNumber: String { get }
  • Vehicle type

    Declaration

    Objective-C

    @property (readonly, nonatomic) HereSDKDemandVehicleType vehicleType;

    Swift

    var vehicleType: HereSDKDemandVehicleType { get }
  • Vehicle manufacturer

    Declaration

    Objective-C

    @property (readonly, nonatomic) NSString *_Nonnull manufacturer;

    Swift

    var manufacturer: String { get }
  • Vehicle model

    Declaration

    Objective-C

    @property (readonly, nonatomic) NSString *_Nonnull model;

    Swift

    var model: String { get }
  • Vehicle color

    Declaration

    Objective-C

    @property (readonly, nonatomic) NSString *_Nonnull color;

    Swift

    var color: String { get }
  • Vehicle identifier (optional). An identifier that displayed on the vehicle and helps the passenger identify it.

    Declaration

    Objective-C

    @property (readonly, nonatomic, nullable) NSString *identifier;

    Swift

    var identifier: String? { get }