diff options
Diffstat (limited to 'SmartDeviceLink/SDLUnsubscribeButtonResponse.h')
-rw-r--r-- | SmartDeviceLink/SDLUnsubscribeButtonResponse.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLUnsubscribeButtonResponse.h b/SmartDeviceLink/SDLUnsubscribeButtonResponse.h new file mode 100644 index 000000000..62011539f --- /dev/null +++ b/SmartDeviceLink/SDLUnsubscribeButtonResponse.h @@ -0,0 +1,26 @@ +// SDLUnsubscribeButtonResponse.h +// + + +#import "SDLRPCResponse.h" + +/** + * Unsubscribe Button Response is sent, when SDLUnsubscribeButton has been called + * + * @since SmartDeviceLink 1.0 + */ +@interface SDLUnsubscribeButtonResponse : SDLRPCResponse { +} + +/** + * @abstract Constructs a new SDLUnsubscribeButtonResponse object + */ +- (instancetype)init; +/** + * @abstract Constructs a new SDLUnsubscribeButtonResponse object indicated by the NSMutableDictionary + * parameter + * @param dict The dictionary to use + */ +- (instancetype)initWithDictionary:(NSMutableDictionary *)dict; + +@end |