ZendriveVehicleInfo
@interface ZendriveVehicleInfo : NSObject
Wrapper for meta information related to a vehicle.
-
The unique identifier for the vehicle.
This should not be nil, should not have more than 64 characters and should satisfy
+[Zendrive isValidInputParameter:]
.Declaration
Objective-C
@property (nonatomic, nonnull) NSString *vehicleId;
-
The mac address of vehicles’s bluetooth device.
Declaration
Objective-C
@property (nonatomic, nonnull) NSString *bluetoothId;
-
Initializer for
ZendriveVehicleInfo
.Declaration
Objective-C
- (nonnull id)initWithVehicleId:(NSString *_Nonnull)vehicleId bluetoothId:(NSString *_Nonnull)bluetoothId;