summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLSetDisplayLayoutResponse.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLSetDisplayLayoutResponse.h')
-rw-r--r--SmartDeviceLink/SDLSetDisplayLayoutResponse.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/SmartDeviceLink/SDLSetDisplayLayoutResponse.h b/SmartDeviceLink/SDLSetDisplayLayoutResponse.h
index 1beff1419..edacb17ed 100644
--- a/SmartDeviceLink/SDLSetDisplayLayoutResponse.h
+++ b/SmartDeviceLink/SDLSetDisplayLayoutResponse.h
@@ -13,11 +13,16 @@
*
* Since SmartDeviceLink 2.0
*/
+
+NS_ASSUME_NONNULL_BEGIN
+
@interface SDLSetDisplayLayoutResponse : SDLRPCResponse
-@property (strong) SDLDisplayCapabilities *displayCapabilities;
-@property (strong) NSMutableArray<SDLButtonCapabilities *> *buttonCapabilities;
-@property (strong) NSMutableArray<SDLSoftButtonCapabilities *> *softButtonCapabilities;
-@property (strong) SDLPresetBankCapabilities *presetBankCapabilities;
+@property (nullable, strong, nonatomic) SDLDisplayCapabilities *displayCapabilities;
+@property (nullable, strong, nonatomic) NSMutableArray<SDLButtonCapabilities *> *buttonCapabilities;
+@property (nullable, strong, nonatomic) NSMutableArray<SDLSoftButtonCapabilities *> *softButtonCapabilities;
+@property (nullable, strong, nonatomic) SDLPresetBankCapabilities *presetBankCapabilities;
@end
+
+NS_ASSUME_NONNULL_END