OSSPutSymlinkRequest.h 533 B

12345678910111213141516171819202122232425
  1. //
  2. // OSSPutSymlinkRequest.h
  3. // AliyunOSSSDK
  4. //
  5. // Created by huaixu on 2018/8/1.
  6. // Copyright © 2018年 aliyun. All rights reserved.
  7. //
  8. #import "OSSRequest.h"
  9. @interface OSSPutSymlinkRequest : OSSRequest
  10. /* bucket name */
  11. @property (nonatomic, copy) NSString *bucketName;
  12. /* object name */
  13. @property (nonatomic, copy) NSString *objectKey;
  14. /* target object name */
  15. @property (nonatomic, copy) NSString *targetObjectName;
  16. /* meta info in request header fields */
  17. @property (nonatomic, copy) NSDictionary *objectMeta;
  18. @end