diff options
Diffstat (limited to 'SmartDeviceLink/SDLCreateInteractionChoiceSet.h')
-rw-r--r-- | SmartDeviceLink/SDLCreateInteractionChoiceSet.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/SmartDeviceLink/SDLCreateInteractionChoiceSet.h b/SmartDeviceLink/SDLCreateInteractionChoiceSet.h index 2739c3c11..2679f0266 100644 --- a/SmartDeviceLink/SDLCreateInteractionChoiceSet.h +++ b/SmartDeviceLink/SDLCreateInteractionChoiceSet.h @@ -19,6 +19,8 @@ * * @see SDLDeleteInteractionChoiceSet SDLPerformInteraction */ +NS_ASSUME_NONNULL_BEGIN + @interface SDLCreateInteractionChoiceSet : SDLRPCRequest - (instancetype)initWithId:(UInt32)choiceId choiceSet:(NSArray<SDLChoice *> *)choiceSet; @@ -28,13 +30,15 @@ * * Required, Integer, 0 - 2,000,000,000 */ -@property (strong) NSNumber<SDLInt> *interactionChoiceSetID; +@property (strong, nonatomic) NSNumber<SDLInt> *interactionChoiceSetID; /** * @abstract Array of choices, which the user can select by menu or voice recognition * * Required, SDLChoice, Array size 1 - 100 */ -@property (strong) NSMutableArray<SDLChoice *> *choiceSet; +@property (strong, nonatomic) NSMutableArray<SDLChoice *> *choiceSet; @end + +NS_ASSUME_NONNULL_END |