summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLVehicleType.h
blob: 4d7164bb406a4137b05a3411e967cee647da6490 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//  SDLVehicleType.h
//


#import "SDLRPCMessage.h"

/**
 * Describes the type of vehicle the mobile phone is connected with.
 *
 * @since SDL 2.0
 */

NS_ASSUME_NONNULL_BEGIN

@interface SDLVehicleType : SDLRPCStruct

/**
 * @abstract The make of the vehicle
 *
 * @discussion For example, "Ford", "Lincoln", etc.
 *
 * Optional, Max String length 500 chars
 */
@property (strong, nonatomic, nullable) NSString *make;

/**
 * @abstract The model of the vehicle
 *
 * @discussion For example, "Fiesta", "Focus", etc.
 *
 * Optional, Max String length 500 chars
 */
@property (strong, nonatomic, nullable) NSString *model;

/**
 * @abstract The model year of the vehicle
 *
 * @discussion For example, "2013"
 *
 * Optional, Max String length 500 chars
 */
@property (strong, nonatomic, nullable) NSString *modelYear;

/**
 * @abstract The trim of the vehicle
 *
 * @discussion For example, "SE", "SEL"
 *
 * Optional, Max String length 500 chars
 */
@property (strong, nonatomic, nullable) NSString *trim;

@end

NS_ASSUME_NONNULL_END