summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLRPCResponse.h
blob: d6bc4ba4fa367400da1ae8c56988ff34c659c739 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//  SDLRPCResponse.h
//


#import "SDLRPCMessage.h"

#import "SDLResult.h"

@interface SDLRPCResponse : SDLRPCMessage

@property (strong) NSNumber *correlationID;
@property (strong) NSNumber *success;
@property (strong) SDLResult resultCode;
@property (strong) NSString *info;

@end