blob: 4e0af4a393d8966a00795e1ba43b2cf432374787 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// SDLGetDTCsResponse.h
//
#import "SDLRPCResponse.h"
/**
* SDLGetDTCsResponse is sent, when SDLGetDTCs has been called
*
* Since <b>SmartDeviceLink 2.0</b>
*/
@interface SDLGetDTCsResponse : SDLRPCResponse {
}
- (instancetype)init;
- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;
@property (strong) NSNumber *ecuHeader;
@property (strong) NSMutableArray *dtc;
@end
|