Files
fanyin-ios/Pods/AliyunOSSiOS/AliyunOSSSDK/OSSPutSymlinkRequest.h

26 lines
533 B
C
Raw Normal View History

2025-08-12 14:27:12 +08:00
//
// OSSPutSymlinkRequest.h
// AliyunOSSSDK
//
// Created by huaixu on 2018/8/1.
// Copyright © 2018年 aliyun. All rights reserved.
//
#import "OSSRequest.h"
@interface OSSPutSymlinkRequest : OSSRequest
/* bucket name */
@property (nonatomic, copy) NSString *bucketName;
/* object name */
@property (nonatomic, copy) NSString *objectKey;
/* target object name */
@property (nonatomic, copy) NSString *targetObjectName;
/* meta info in request header fields */
@property (nonatomic, copy) NSDictionary *objectMeta;
@end