summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLReleaseInteriorVehicleDataModule.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLReleaseInteriorVehicleDataModule.h')
-rw-r--r--SmartDeviceLink/SDLReleaseInteriorVehicleDataModule.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLReleaseInteriorVehicleDataModule.h b/SmartDeviceLink/SDLReleaseInteriorVehicleDataModule.h
new file mode 100644
index 000000000..e8d946244
--- /dev/null
+++ b/SmartDeviceLink/SDLReleaseInteriorVehicleDataModule.h
@@ -0,0 +1,34 @@
+//
+// SDLReleaseInteriorVehicleDataModule.h
+// SmartDeviceLink
+//
+// Created by standa1 on 7/25/19.
+// Copyright © 2019 smartdevicelink. All rights reserved.
+//
+
+#import "SDLRPCRequest.h"
+#import "SDLModuleType.h"
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface SDLReleaseInteriorVehicleDataModule : SDLRPCRequest
+
+- (instancetype)initWithModuleType:(SDLModuleType)moduleType moduleId:(NSString *)moduleId;
+
+/**
+ * The module type that the app requests to control.
+ *
+ * Required
+ */
+@property (strong, nonatomic) SDLModuleType moduleType;
+
+/**
+ * Id of a module, published by System Capability.
+ *
+ * Optional
+ */
+@property (strong, nonatomic, nullable) NSString *moduleId;
+
+@end
+
+NS_ASSUME_NONNULL_END