blob: a39b1f7126a3961a429b42b2a5100648f9766560 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// SDLSystemRequest.h
//
#import "SDLRPCRequest.h"
#import "SDLRequestType.h"
/** An asynchronous request from the device; binary data can be included in hybrid part of message for some requests<br> (such as HTTP, Proprietary, or Authentication requests)
* <p>
* @since SmartDeviceLink 3.0
*
*/
NS_ASSUME_NONNULL_BEGIN
@interface SDLSystemRequest : SDLRPCRequest
- (instancetype)initWithType:(SDLRequestType)requestType fileName:(nullable NSString *)fileName;
@property (strong, nonatomic) SDLRequestType requestType;
@property (strong, nonatomic, nullable) NSString *fileName;
@end
NS_ASSUME_NONNULL_END
|