diff options
Diffstat (limited to 'SmartDeviceLink/SDLDeleteInteractionChoiceSet.m')
-rw-r--r-- | SmartDeviceLink/SDLDeleteInteractionChoiceSet.m | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLDeleteInteractionChoiceSet.m b/SmartDeviceLink/SDLDeleteInteractionChoiceSet.m new file mode 100644 index 000000000..fd5d202b1 --- /dev/null +++ b/SmartDeviceLink/SDLDeleteInteractionChoiceSet.m @@ -0,0 +1,35 @@ +// SDLDeleteInteractionChoiceSet.m +// + + +#import "SDLDeleteInteractionChoiceSet.h" + +#import "SDLNames.h" + +@implementation SDLDeleteInteractionChoiceSet + +- (instancetype)init { + if (self = [super initWithName:NAMES_DeleteInteractionChoiceSet]) { + } + return self; +} + +- (instancetype)initWithDictionary:(NSMutableDictionary *)dict { + if (self = [super initWithDictionary:dict]) { + } + return self; +} + +- (void)setInteractionChoiceSetID:(NSNumber *)interactionChoiceSetID { + if (interactionChoiceSetID != nil) { + [parameters setObject:interactionChoiceSetID forKey:NAMES_interactionChoiceSetID]; + } else { + [parameters removeObjectForKey:NAMES_interactionChoiceSetID]; + } +} + +- (NSNumber *)interactionChoiceSetID { + return [parameters objectForKey:NAMES_interactionChoiceSetID]; +} + +@end |