summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLPutFileResponse.h
blob: 9857607ca53579965b1b55004f0cfa05c1b35080 (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
//  SDLPutFileResponse.h
//


#import "SDLRPCResponse.h"

/**
 * Put File Response is sent, when SDLPutFile has been called
 *
 * Since SmartDeviceLink 2.0
 */
@interface SDLPutFileResponse : SDLRPCResponse {
}
/**
 * @abstract Constructs a new SDLPutFileResponse object
 */
- (instancetype)init;
/**
 * @abstract Constructs a new SDLPutFileResponse object indicated by the dictionary parameter
 * @param dict The dictionary to use
 */
- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;
@property (strong) NSNumber *spaceAvailable;
@end