Describes the type of vehicle the mobile phone is connected with.
@since SDL 2.0
The make of the vehicle
For example, “Ford”, “Lincoln”, etc.
Optional, Max String length 500 chars
@property (nonatomic, strong, nullable) NSString *make;
var make: String? { get set }
The model of the vehicle
For example, “Fiesta”, “Focus”, etc.
Optional, Max String length 500 chars
@property (nonatomic, strong, nullable) NSString *model;
var model: String? { get set }
The model year of the vehicle
For example, “2013”
Optional, Max String length 500 chars
@property (nonatomic, strong, nullable) NSString *modelYear;
var modelYear: String? { get set }
The trim of the vehicle
For example, “SE”, “SEL”
Optional, Max String length 500 chars
@property (nonatomic, strong, nullable) NSString *trim;
var trim: String? { get set }
Initialize the object
- (nonnull instancetype)initWithMake:(nullable NSString *)make
model:(nullable NSString *)model
modelYear:(nullable NSString *)modelYear
trim:(nullable NSString *)trim;
init(make: String?, model: String?, modelYear: String?, trim: String?)
- make
- model
- modelYear
- trim
A SDLVehicleType object