diff options
Diffstat (limited to 'SmartDeviceLink/SDLUpdateTurnList.h')
-rw-r--r-- | SmartDeviceLink/SDLUpdateTurnList.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/SmartDeviceLink/SDLUpdateTurnList.h b/SmartDeviceLink/SDLUpdateTurnList.h index 873459967..63a3473aa 100644 --- a/SmartDeviceLink/SDLUpdateTurnList.h +++ b/SmartDeviceLink/SDLUpdateTurnList.h @@ -12,18 +12,23 @@ *<p> * @since SmartDeviceLink 2.0 */ + +NS_ASSUME_NONNULL_BEGIN + @interface SDLUpdateTurnList : SDLRPCRequest -- (instancetype)initWithTurnList:(NSArray<SDLTurn *> *)turnList softButtons:(NSArray<SDLSoftButton *> *)softButtons; +- (instancetype)initWithTurnList:(nullable NSArray<SDLTurn *> *)turnList softButtons:(nullable NSArray<SDLSoftButton *> *)softButtons; /** * Optional, SDLTurn, 1 - 100 entries */ -@property (strong) NSMutableArray<SDLTurn *> *turnList; +@property (strong, nonatomic, nullable) NSMutableArray<SDLTurn *> *turnList; /** * Required, SDLSoftButton, 0 - 1 Entries */ -@property (strong) NSMutableArray<SDLSoftButton *> *softButtons; +@property (strong, nonatomic, nullable) NSMutableArray<SDLSoftButton *> *softButtons; @end + +NS_ASSUME_NONNULL_END |