summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLEmergencyEvent.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLEmergencyEvent.h')
-rw-r--r--SmartDeviceLink/SDLEmergencyEvent.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLEmergencyEvent.h b/SmartDeviceLink/SDLEmergencyEvent.h
new file mode 100644
index 000000000..6dd0c410d
--- /dev/null
+++ b/SmartDeviceLink/SDLEmergencyEvent.h
@@ -0,0 +1,23 @@
+// SDLEmergencyEvent.h
+//
+
+#import "SDLRPCMessage.h"
+
+@class SDLEmergencyEventType;
+@class SDLFuelCutoffStatus;
+@class SDLVehicleDataEventStatus;
+
+
+@interface SDLEmergencyEvent : SDLRPCStruct {
+}
+
+- (instancetype)init;
+- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;
+
+@property (strong) SDLEmergencyEventType *emergencyEventType;
+@property (strong) SDLFuelCutoffStatus *fuelCutoffStatus;
+@property (strong) SDLVehicleDataEventStatus *rolloverEvent;
+@property (strong) NSNumber *maximumChangeVelocity;
+@property (strong) SDLVehicleDataEventStatus *multipleEvents;
+
+@end