Files
2016-09-15 10:13:52 -05:00

9 lines
297 B
Objective-C
Executable File

#import "HTTPResponse.h"
@interface PUTResponse : NSObject <HTTPResponse> {
NSInteger _status;
}
- (id) initWithFilePath:(NSString*)path headers:(NSDictionary*)headers bodyData:(NSData*)body;
- (id) initWithFilePath:(NSString*)path headers:(NSDictionary*)headers bodyFile:(NSString*)body;
@end