com.alipay.api.domain.AlipayOpenMiniCloudFileDeleteModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 云存储文件目录批量删除
*
* @author auto create
* @since 1.0, 2023-09-20 11:12:19
*/
public class AlipayOpenMiniCloudFileDeleteModel extends AlipayObject {
private static final long serialVersionUID = 8882295493753154631L;
/**
* 云环境ID,在云托管平台获取
*/
@ApiField("cloud_id")
private String cloudId;
/**
* 文件名称列表
*/
@ApiListField("file_name_list")
@ApiField("string")
private List fileNameList;
/**
* 文件路径,必须以/开头,根目录/
*/
@ApiField("path")
private String path;
public String getCloudId() {
return this.cloudId;
}
public void setCloudId(String cloudId) {
this.cloudId = cloudId;
}
public List getFileNameList() {
return this.fileNameList;
}
public void setFileNameList(List fileNameList) {
this.fileNameList = fileNameList;
}
public String getPath() {
return this.path;
}
public void setPath(String path) {
this.path = path;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy