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

#import "SDLRPCResponse.h"
#import "SDLAppServiceData.h"

NS_ASSUME_NONNULL_BEGIN

/*
 *  This response includes the data that is requested from the specific service.
 */
@interface SDLGetAppServiceDataResponse : SDLRPCResponse

/**
 * Convenience init.
 *
 *  @param serviceData  Contains all the current data of the app service
 *  @return             A SDLGetAppServiceDataResponse object
 */
- (instancetype)initWithAppServiceData:(SDLAppServiceData *)serviceData;

/**
 *  Contains all the current data of the app service.
 *
 *  SDLAppServiceData, Required
 */
@property (strong, nonatomic) SDLAppServiceData *serviceData;

@end

NS_ASSUME_NONNULL_END