summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLListFilesResponse.h
blob: b5ddef16e7513c127caac43ca89a3fff4cdc5dc8 (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
26
27
28
29
//  SDLListFilesResponse.h
//


#import "SDLRPCResponse.h"

/**
 Response to SDLListFiles

 Since SmartDeviceLink 2.0
 */

NS_ASSUME_NONNULL_BEGIN

@interface SDLListFilesResponse : SDLRPCResponse

/**
 An array of all filenames resident on the module for the given registered app. If omitted, then no files currently reside on the system.
 */
@property (nullable, strong, nonatomic) NSArray<NSString *> *filenames;

/**
 Provides the total local space available on the module for the registered app.
 */
@property (nullable, strong, nonatomic) NSNumber<SDLInt> *spaceAvailable;

@end

NS_ASSUME_NONNULL_END