summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLSystemRequest.h
blob: 479b5d18e547bb6c39018f5abcdd661575fd68f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//  SDLSystemRequest.h
//

#import "SDLRPCRequest.h"

@class SDLRequestType;


/** 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
 *
 */
@interface SDLSystemRequest : SDLRPCRequest {
}

- (instancetype)init;
- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;

@property (strong) SDLRequestType *requestType;
@property (strong) NSString *fileName;

@end