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


#import "SDLRPCResponse.h"

/**
 * SDLListFilesResponse is sent, when SDLListFiles has been called
 *
 * Since <b>SmartDeviceLink 2.0</b>
 */

NS_ASSUME_NONNULL_BEGIN

@interface SDLListFilesResponse : SDLRPCResponse

@property (nullable, strong) NSMutableArray<NSString *> *filenames;
@property (strong) NSNumber<SDLInt> *spaceAvailable;

@end

NS_ASSUME_NONNULL_END