All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkdrive_1_0.models.ListFilesRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy