aliyun-oss-react-native

OSSGetObjectACLRequest.h 447B

123456789101112131415161718192021222324252627
  1. //
  2. // OSSGetObjectACLRequest.h
  3. // AliyunOSSSDK
  4. //
  5. // Created by huaixu on 2018/1/26.
  6. // Copyright © 2018年 aliyun. All rights reserved.
  7. //
  8. #import "OSSRequest.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface OSSGetObjectACLRequest : OSSRequest
  11. /**
  12. the bucket's name which object stored
  13. */
  14. @property (nonatomic, copy) NSString *bucketName;
  15. /**
  16. the name of object
  17. */
  18. @property (nonatomic, copy) NSString *objectName;
  19. @end
  20. NS_ASSUME_NONNULL_END