com.aliyun.ccp.ccpclient.models.GetDownloadUrlRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ccp.ccpclient.models;
import com.aliyun.tea.*;
/**
* 获取文件下载地址的请求body
*/
public class GetDownloadUrlRequest extends TeaModel {
@NameInMap("drive_id")
@Validation(required = true, pattern = "[0-9]+")
public String driveId;
@NameInMap("expire_sec")
public Long expireSec;
@NameInMap("file_id")
@Validation(required = true, pattern = "[a-z0-9.-_]{1,50}")
public String fileId;
@NameInMap("file_name")
@Validation(pattern = "[a-zA-Z0-9.-]{1,1000}")
public String fileName;
@NameInMap("file_path")
public String filePath;
@NameInMap("share_id")
public String shareId;
public static GetDownloadUrlRequest build(java.util.Map map) throws Exception {
GetDownloadUrlRequest self = new GetDownloadUrlRequest();
return TeaModel.build(map, self);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy