summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLDiagnosticMessageResponse.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLDiagnosticMessageResponse.h')
-rw-r--r--SmartDeviceLink/SDLDiagnosticMessageResponse.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLDiagnosticMessageResponse.h b/SmartDeviceLink/SDLDiagnosticMessageResponse.h
new file mode 100644
index 000000000..4820b893f
--- /dev/null
+++ b/SmartDeviceLink/SDLDiagnosticMessageResponse.h
@@ -0,0 +1,18 @@
+// SDLDiagnosticMessageResponse.h
+//
+
+
+#import "SDLRPCResponse.h"
+
+/** SDLDiagnosticMessageResponse is sent, when SDLDiagnosticMessage has been called.
+ * Since<b>SmartDeviceLink 3.0</b>
+ */
+@interface SDLDiagnosticMessageResponse : SDLRPCResponse {
+}
+
+- (instancetype)init;
+- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;
+
+@property (strong) NSMutableArray *messageDataResult;
+
+@end