summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLUnsubscribeButtonResponse.h
blob: 62011539f2dd3cc71dcb09ce847944c4a6474fc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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