OSSPutObjectTaggingRequest.h 497 B

123456789101112131415161718192021222324252627
  1. //
  2. // OSSPutObjectTaggingRequest.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 OSSPutObjectTaggingRequest : OSSRequest
  11. /* bucket name */
  12. @property (nonatomic, copy) NSString *bucketName;
  13. /* object name */
  14. @property (nonatomic, copy) NSString *objectKey;
  15. @property (nonatomic, copy) NSDictionary *tags;
  16. - (NSDictionary *)entityToDictionary;
  17. @end
  18. NS_ASSUME_NONNULL_END