com.aliyun.dingtalkdrive_1_0.models.ListFilesRequest 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 ListFilesRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("maxResults")
public Integer maxResults;
@NameInMap("nextToken")
public String nextToken;
@NameInMap("orderType")
public String orderType;
@NameInMap("parentId")
public String parentId;
/**
* This parameter is required.
*/
@NameInMap("unionId")
public String unionId;
@NameInMap("withIcon")
public Boolean withIcon;
public static ListFilesRequest build(java.util.Map map) throws Exception {
ListFilesRequest self = new ListFilesRequest();
return TeaModel.build(map, self);
}
public ListFilesRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public ListFilesRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public ListFilesRequest setOrderType(String orderType) {
this.orderType = orderType;
return this;
}
public String getOrderType() {
return this.orderType;
}
public ListFilesRequest setParentId(String parentId) {
this.parentId = parentId;
return this;
}
public String getParentId() {
return this.parentId;
}
public ListFilesRequest setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
public ListFilesRequest setWithIcon(Boolean withIcon) {
this.withIcon = withIcon;
return this;
}
public Boolean getWithIcon() {
return this.withIcon;
}
}