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

/// Convenience init to change settings of a module
///
/// @param moduleData A remote control module data object
/// @return An SDLSetInteriorVehicleData object
- (instancetype)initWithModuleData:(SDLModuleData *)moduleData;

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

@end

NS_ASSUME_NONNULL_END