summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLAlertResponse.h
blob: 81228d34a39ba38e21464c0455e21bb3cb1e5f6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//  SDLAlertResponse.h
//


#import "SDLRPCResponse.h"

/**
 * Sent after SDLAlert has been sent
 * @since SDL 1.0
 */
@interface SDLAlertResponse : SDLRPCResponse {
}

- (instancetype)init;
- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;

@property (strong) NSNumber *tryAgainTime;

@end