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 {
/**
* This parameter is required.
*/
@NameInMap("maxResults")
public Integer maxResults;
@NameInMap("nextToken")
public String nextToken;
@NameInMap("orderType")
public String orderType;
/**
* This parameter is required.
*/
@NameInMap("recycleType")
public String recycleType;
/**
* This parameter is required.
*/
@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;
}
}