aliyun-oss-react-native

OSSGetObjectACLResult.h 418B

1234567891011121314151617181920
  1. //
  2. // OSSGetObjectACLResult.h
  3. // AliyunOSSSDK
  4. //
  5. // Created by huaixu on 2018/1/26.
  6. // Copyright © 2018年 aliyun. All rights reserved.
  7. //
  8. #import "OSSResult.h"
  9. @interface OSSGetObjectACLResult : OSSResult
  10. /**
  11. the ACL of object,valid values: @"private",@"public-read",@"public-read-write".
  12. if object's ACL inherit from bucket,it will return @"default".
  13. */
  14. @property (nonatomic, copy) NSString *grant;
  15. @end