arq_restore/cocoastack/aws/AWSQueryResponse.h
2014-07-28 14:20:07 -04:00

17 lines
333 B
Objective-C

//
// Created by Stefan Reitshamer on 9/16/12.
//
//
@interface AWSQueryResponse : NSObject {
int code;
NSDictionary *headers;
NSData *body;
}
- (id)initWithCode:(int)theCode headers:(NSDictionary *)theHeaders body:(NSData *)theBody;
- (int)code;
- (NSString *)headerForKey:(NSString *)theKey;
- (NSData *)body;
@end