summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLDeleteFileResponse.h
blob: ee61aa9d0a72d1f16a62acb45bbfdd6ac073f468 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//  SDLDeleteFileResponse.h
//


#import "SDLRPCResponse.h"

/**
 * Delete File Response is sent, when DeleteFile has been called
 *
 * Since <b>SmartDeviceLink 2.0</b><br>
 */
@interface SDLDeleteFileResponse : SDLRPCResponse {
}

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

@property (strong) NSNumber *spaceAvailable;

@end