com.aliyun.dingtalkdrive_1_0.models.ListRecycleFilesRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkdrive_1_0.models;
import com.aliyun.tea.*;
public class ListRecycleFilesRequest extends TeaModel {
// 分页长度
@NameInMap("maxResults")
public Integer maxResults;
// 分页加载更多锚点
@NameInMap("nextToken")
public String nextToken;
// 文件排序类型
@NameInMap("orderType")
public String orderType;
// 回收站类型
@NameInMap("recycleType")
public String recycleType;
// 用户id
@NameInMap("unionId")
public String unionId;
public static ListRecycleFilesRequest build(java.util.Map map) throws Exception {
ListRecycleFilesRequest self = new ListRecycleFilesRequest();
return TeaModel.build(map, self);
}
public ListRecycleFilesRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public ListRecycleFilesRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public ListRecycleFilesRequest setOrderType(String orderType) {
this.orderType = orderType;
return this;
}
public String getOrderType() {
return this.orderType;
}
public ListRecycleFilesRequest setRecycleType(String recycleType) {
this.recycleType = recycleType;
return this;
}
public String getRecycleType() {
return this.recycleType;
}
public ListRecycleFilesRequest setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
}