mirror of
https://github.com/samsonjs/arq_restore.git
synced 2026-06-28 05:29:34 +00:00
21 lines
501 B
Objective-C
21 lines
501 B
Objective-C
//
|
|
// S3MultiDeleteResponse.h
|
|
// Arq
|
|
//
|
|
// Created by Stefan Reitshamer on 1/13/14.
|
|
// Copyright (c) 2014 Stefan Reitshamer. All rights reserved.
|
|
//
|
|
|
|
|
|
@interface S3MultiDeleteResponse : NSObject <NSXMLParserDelegate> {
|
|
NSMutableArray *elementNames;
|
|
NSMutableString *currentStringBuffer;
|
|
NSString *errorKey;
|
|
NSString *errorCode;
|
|
NSString *errorMessage;
|
|
NSMutableDictionary *errorCodesByPath;
|
|
}
|
|
- (id)initWithData:(NSData *)theData;
|
|
|
|
- (NSDictionary *)errorCodesByPath;
|
|
@end
|