OSSGetObjectTaggingRequest.h 406 B

1234567891011121314151617181920212223
  1. //
  2. // GetObjectTaggingRequest.h
  3. // AliyunOSSSDK
  4. //
  5. // Created by ws on 2021/5/25.
  6. // Copyright © 2021 aliyun. All rights reserved.
  7. //
  8. #import "OSSRequest.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface OSSGetObjectTaggingRequest : OSSRequest
  11. /* bucket name */
  12. @property (nonatomic, copy) NSString *bucketName;
  13. /* object name */
  14. @property (nonatomic, copy) NSString *objectKey;
  15. @end
  16. NS_ASSUME_NONNULL_END