summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLRPCResponse.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLRPCResponse.h')
-rw-r--r--SmartDeviceLink/SDLRPCResponse.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/SmartDeviceLink/SDLRPCResponse.h b/SmartDeviceLink/SDLRPCResponse.h
index d952c6229..270217e4a 100644
--- a/SmartDeviceLink/SDLRPCResponse.h
+++ b/SmartDeviceLink/SDLRPCResponse.h
@@ -6,11 +6,15 @@
#import "SDLResult.h"
+NS_ASSUME_NONNULL_BEGIN
+
@interface SDLRPCResponse : SDLRPCMessage
@property (strong, nonatomic) NSNumber<SDLInt> *correlationID;
@property (strong, nonatomic) NSNumber<SDLBool> *success;
@property (strong, nonatomic) SDLResult resultCode;
-@property (strong, nonatomic) NSString *info;
+@property (nullable, strong, nonatomic) NSString *info;
@end
+
+NS_ASSUME_NONNULL_END