summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLAlertResponse.m
blob: f93a124e7a587296ca2e139890553bb0c5ed448f (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
27
28
//  SDLAlertResponse.m
//

#import "SDLAlertResponse.h"

#import "NSMutableDictionary+Store.h"
#import "SDLNames.h"

NS_ASSUME_NONNULL_BEGIN

@implementation SDLAlertResponse

- (instancetype)init {
    if (self = [super initWithName:SDLNameAlert]) {
    }
    return self;
}

- (void)setTryAgainTime:(nullable NSNumber<SDLInt> *)tryAgainTime {
    [parameters sdl_setObject:tryAgainTime forName:SDLNameTryAgainTime];}

- (nullable NSNumber<SDLInt> *)tryAgainTime {
    return [parameters objectForKey:SDLNameTryAgainTime];
}

@end

NS_ASSUME_NONNULL_END