00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #import <Foundation/Foundation.h>
00017
00018
00019 @interface S3ListObjectsResult : NSObject {
00020 NSMutableArray *objectSummaries;
00021 NSString *bucketName;
00022 NSString *prefix;
00023 NSString *marker;
00024 NSInteger maxKeys;
00025 NSString *delimiter;
00026 bool isTruncated;
00027 NSMutableArray *commonPrefixes;
00028 }
00029
00031 @property (nonatomic, retain) NSMutableArray *objectSummaries;
00032
00034 @property (nonatomic, retain) NSString *bucketName;
00035
00037 @property (nonatomic, retain) NSString *prefix;
00038
00040 @property (nonatomic, retain) NSString *marker;
00041
00043 @property (nonatomic) NSInteger maxKeys;
00044
00046 @property (nonatomic, retain) NSString *delimiter;
00047
00051 @property (nonatomic) bool isTruncated;
00052
00056 @property (nonatomic, retain) NSMutableArray *commonPrefixes;
00057
00058
00059 @end