summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLPutFileResponse.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink-iOS/SmartDeviceLink/SDLPutFileResponse.h')
-rw-r--r--SmartDeviceLink-iOS/SmartDeviceLink/SDLPutFileResponse.h17
1 files changed, 13 insertions, 4 deletions
diff --git a/SmartDeviceLink-iOS/SmartDeviceLink/SDLPutFileResponse.h b/SmartDeviceLink-iOS/SmartDeviceLink/SDLPutFileResponse.h
index e02fbd80f..c6258334e 100644
--- a/SmartDeviceLink-iOS/SmartDeviceLink/SDLPutFileResponse.h
+++ b/SmartDeviceLink-iOS/SmartDeviceLink/SDLPutFileResponse.h
@@ -1,15 +1,24 @@
// SDLPutFileResponse.h
//
-// Copyright (c) 2014 Ford Motor Company. All rights reserved.
+
#import "SDLRPCResponse.h"
+/**
+ * Put File Response is sent, when SDLPutFile has been called
+ *
+ * Since SmartDeviceLink 2.0
+ */
@interface SDLPutFileResponse : SDLRPCResponse {}
-
+/**
+ * @abstract Constructs a new SDLPutFileResponse object
+ */
-(id) init;
+/**
+ * @abstract Constructs a new SDLPutFileResponse object indicated by the NSMutableDictionary parameter
+ * @param dict The NSMutableDictionary to use
+ */
-(id) initWithDictionary:(NSMutableDictionary*) dict;
-
@property(strong) NSNumber* spaceAvailable;
-
@end