mirror of
https://github.com/samsonjs/arq_restore.git
synced 2026-04-04 10:55:52 +00:00
17 lines
333 B
Objective-C
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
|