blob: b38eb5a27d164eb838a983443ea5bc9579991b1d (
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
|
// SDLSubscribeButtonResponse.h
//
#import "SDLRPCResponse.h"
/**
* SubscribeButton Response is sent, when SDLSubscribeButton has been called
*
* Since SmartDeviceLink 1.0
*/
@interface SDLSubscribeButtonResponse : SDLRPCResponse {
}
/**
* @abstract Constructs a new SDLSubscribeButtonResponse object
*/
- (instancetype)init;
/**
* @abstract Constructs a new SDLSubscribeButtonResponse object indicated by the NSMutableDictionary
* parameter
* @param dict The dictionary to use
*/
- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;
@end
|