blob: 897ba1bf831eccbbdedfebb584f67b73b0b0e24f (
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
|
// SDLSingleTireStatus.h
//
#import "SDLRPCMessage.h"
@class SDLComponentVolumeStatus;
/**
* Tire pressure status of a single tire.
*
* @since SmartDeviceLink 2.0
*/
@interface SDLSingleTireStatus : SDLRPCStruct {
}
/**
* @abstract Constructs a newly allocated SDLSingleTireStatus object
*/
- (instancetype)init;
/**
* @abstract Constructs a newly allocated SDLSingleTireStatus object indicated by the dictionary parameter
* @param dict The dictionary to use
*/
- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;
/**
* @abstract The volume status of a single tire
*/
@property (strong) SDLComponentVolumeStatus *status;
@end
|