OSSResult.m 466 B

12345678910111213141516171819
  1. //
  2. // OSSResult.m
  3. // AliyunOSSSDK
  4. //
  5. // Created by huaixu on 2018/1/26.
  6. // Copyright © 2018年 aliyun. All rights reserved.
  7. //
  8. #import "OSSResult.h"
  9. @implementation OSSResult
  10. - (NSString *)description
  11. {
  12. return [NSString stringWithFormat:@"OSSResult<%p> : {httpResponseCode: %ld, requestId: %@, httpResponseHeaderFields: %@, local_crc64ecma: %@}",self,(long)self.httpResponseCode,self.requestId,self.httpResponseHeaderFields,self.localCRC64ecma];
  13. }
  14. @end