summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLPerformAppServiceInteractionResponse.m
blob: 3b4ff5e0759e1a52cd102f0f16178a6c374010b5 (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
//
//  SDLPerformAppServiceInteractionResponse.m
//  SmartDeviceLink
//
//  Created by Nicole on 2/6/19.
//  Copyright © 2019 smartdevicelink. All rights reserved.
//

#import "SDLPerformAppServiceInteractionResponse.h"

#import "NSMutableDictionary+Store.h"
#import "SDLRPCParameterNames.h"
#import "SDLRPCFunctionNames.h"

NS_ASSUME_NONNULL_BEGIN

@implementation SDLPerformAppServiceInteractionResponse

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

- (instancetype)initWithServiceSpecificResult:(NSString *)serviceSpecificResult {
    self = [self init];
    if (!self) {
        return nil;
    }

    self.serviceSpecificResult = serviceSpecificResult;

    return self;
}

- (void)setServiceSpecificResult:(nullable NSString *)serviceSpecificResult {
    [parameters sdl_setObject:serviceSpecificResult forName:SDLRPCParameterNameServiceSpecificResult];
}

- (nullable NSString *)serviceSpecificResult {
    return [parameters sdl_objectForName:SDLRPCParameterNameServiceSpecificResult ofClass:NSString.class];
}

@end

NS_ASSUME_NONNULL_END