// SDLListFilesResponse.h // #import "SDLRPCResponse.h" /** * SDLListFilesResponse is sent, when SDLListFiles has been called * * Since SmartDeviceLink 2.0 */ @interface SDLListFilesResponse : SDLRPCResponse { } - (instancetype)init; - (instancetype)initWithDictionary:(NSMutableDictionary *)dict; @property (strong) NSMutableArray *filenames; @property (strong) NSNumber *spaceAvailable; @end