summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLPutFileResponse.h
blob: 322ab47d4eac375373c2150e1be230bb143c9c2c (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"

/**
 Response to SDLPutFile

 Since SmartDeviceLink 2.0
 */

NS_ASSUME_NONNULL_BEGIN

@interface SDLPutFileResponse : SDLRPCResponse

/**
 *  Provides the total local space available in SDL Core for the registered app. If the transfer has systemFile enabled, then the value will be set to 0 automatically.
 */
@property (strong, nonatomic) NSNumber<SDLInt> *spaceAvailable;

@end

NS_ASSUME_NONNULL_END