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


#import "SDLRPCMessage.h"

#import "SDLResult.h"

NS_ASSUME_NONNULL_BEGIN

@interface SDLRPCResponse : SDLRPCMessage

@property (nullable, strong) NSNumber<SDLInt> *correlationID;
@property (nullable, strong) NSNumber<SDLBool> *success;
@property (nullable, strong) SDLResult resultCode;
@property (nullable, strong) NSString *info;

@end

NS_ASSUME_NONNULL_END