summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLRPCResponse.h
blob: 92d573cdf47e9c3f31c82726d14d2819bb678d66 (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<SDLInt> *correlationID;
@property (strong) NSNumber<SDLBool> *success;
@property (strong) SDLResult resultCode;
@property (strong) NSString *info;

@end