summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLSetInteriorVehicleData.h
blob: cf7e876a02b91a7e1c9317ba60364f5655400ded (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
//
//  SDLSetInteriorVehicleData.h
//

#import "SDLRPCRequest.h"

@class SDLModuleData;

/**
 * This RPC allows a remote control type mobile application to
 * change the settings of a specific remote control module.
 */

NS_ASSUME_NONNULL_BEGIN

@interface SDLSetInteriorVehicleData : SDLRPCRequest

- (instancetype)initWithModuleData:(SDLModuleData *)moduleData;

/**
 * The module data to set for the requested RC module.
 *
 */
@property (strong, nonatomic) SDLModuleData *moduleData;

@end

NS_ASSUME_NONNULL_END