summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLOnSystemRequest.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLOnSystemRequest.h')
-rw-r--r--SmartDeviceLink/SDLOnSystemRequest.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLOnSystemRequest.h b/SmartDeviceLink/SDLOnSystemRequest.h
new file mode 100644
index 000000000..b590f0650
--- /dev/null
+++ b/SmartDeviceLink/SDLOnSystemRequest.h
@@ -0,0 +1,23 @@
+// SDLOnSystemRequest.h
+//
+
+#import "SDLRPCNotification.h"
+
+@class SDLFileType;
+@class SDLRequestType;
+
+
+@interface SDLOnSystemRequest : SDLRPCNotification {
+}
+
+- (instancetype)init;
+- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;
+
+@property (strong) SDLRequestType *requestType;
+@property (strong) NSString *url;
+@property (strong) NSNumber *timeout;
+@property (strong) SDLFileType *fileType;
+@property (strong) NSNumber *offset;
+@property (strong) NSNumber *length;
+
+@end