blob: c6ab76e5c6bbe86675cbc1f0d7519d6914061f5a (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
//
// SDLGetCloudAppProperties.m
// SmartDeviceLink
//
// Created by Nicole on 2/26/19.
// Copyright © 2019 smartdevicelink. All rights reserved.
//
#import "SDLGetCloudAppProperties.h"
#import "NSMutableDictionary+Store.h"
#import "SDLRPCParameterNames.h"
#import "SDLRPCFunctionNames.h"
NS_ASSUME_NONNULL_BEGIN
@implementation SDLGetCloudAppProperties
- (instancetype)init {
if (self = [super initWithName:SDLRPCFunctionNameGetCloudAppProperties]) {
}
return self;
}
- (instancetype)initWithAppID:(NSString *)appID {
self = [self init];
if (!self) {
return nil;
}
self.appID = appID;
return self;
}
- (void)setAppID:(NSString *)appID {
[parameters sdl_setObject:appID forName:SDLRPCParameterNameAppId];
}
- (NSString *)appID {
NSError *error = nil;
return [parameters sdl_objectForName:SDLRPCParameterNameAppId ofClass:NSString.class error:&error];
}
@end
NS_ASSUME_NONNULL_END
|