// SDLDeleteInteractionChoiceSet.h // #import "SDLRPCRequest.h" /** * Deletes an existing Choice Set identified by the parameter * interactionChoiceSetID. If the specified interactionChoiceSetID is currently * in use by an active SDLPerformInteraction this call to * delete the Choice Set will fail returning an IN_USE resultCode *

* Function Group: Base *

* HMILevel needs to be FULL, LIMITED or BACKGROUD
*

* * Since SmartDeviceLink 1.0
* see SDLCreateInteractionChoiceSet SDLPerformInteraction */ NS_ASSUME_NONNULL_BEGIN @interface SDLDeleteInteractionChoiceSet : SDLRPCRequest - (instancetype)initWithId:(UInt32)choiceId; /** * @abstract a unique ID that identifies the Choice Set * @discussion a unique ID that identifies the Choice Set *

* Notes: Min Value: 0; Max Value: 2000000000 */ @property (strong, nonatomic) NSNumber *interactionChoiceSetID; @end NS_ASSUME_NONNULL_END