123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #import <Foundation/Foundation.h>
- @interface OSSResult : NSObject
- @property (nonatomic, assign) NSInteger httpResponseCode;
- @property (nonatomic, strong) NSDictionary * httpResponseHeaderFields;
- @property (nonatomic, strong) NSString * requestId;
- @property (nonatomic, copy) NSString *remoteCRC64ecma;
- @property (nonatomic, copy) NSString *localCRC64ecma;
- @end
|