Geen omschrijving

OSSGetObjectACLResult.m 394B

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