summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLECallInfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLECallInfo.h')
-rw-r--r--SmartDeviceLink/SDLECallInfo.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLECallInfo.h b/SmartDeviceLink/SDLECallInfo.h
new file mode 100644
index 000000000..932cf056a
--- /dev/null
+++ b/SmartDeviceLink/SDLECallInfo.h
@@ -0,0 +1,20 @@
+// SDLECallInfo.h
+//
+
+#import "SDLRPCMessage.h"
+
+@class SDLVehicleDataNotificationStatus;
+@class SDLECallConfirmationStatus;
+
+
+@interface SDLECallInfo : SDLRPCStruct {
+}
+
+- (instancetype)init;
+- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;
+
+@property (strong) SDLVehicleDataNotificationStatus *eCallNotificationStatus;
+@property (strong) SDLVehicleDataNotificationStatus *auxECallNotificationStatus;
+@property (strong) SDLECallConfirmationStatus *eCallConfirmationStatus;
+
+@end