// SDLDeleteInteractionChoiceSet.m // #import "SDLDeleteInteractionChoiceSet.h" #import "NSMutableDictionary+Store.h" #import "SDLNames.h" NS_ASSUME_NONNULL_BEGIN @implementation SDLDeleteInteractionChoiceSet - (instancetype)init { if (self = [super initWithName:SDLNameDeleteInteractionChoiceSet]) { } return self; } - (instancetype)initWithId:(UInt32)choiceId { self = [self init]; if (!self) { return nil; } self.interactionChoiceSetID = @(choiceId); return self; } - (void)setInteractionChoiceSetID:(NSNumber *)interactionChoiceSetID { [parameters sdl_setObject:interactionChoiceSetID forName:SDLNameInteractionChoiceSetId]; } - (NSNumber *)interactionChoiceSetID { return [parameters sdl_objectForName:SDLNameInteractionChoiceSetId]; } @end NS_ASSUME_NONNULL_END