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.30
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 {
    // 分页长度
    @NameInMap("maxResults")
    public Integer maxResults;

    // 分页查询锚点
    @NameInMap("nextToken")
    public String nextToken;

    // 排序类型
    @NameInMap("orderType")
    public String orderType;

    // 父目录id
    @NameInMap("parentId")
    public String parentId;

    // 用户id
    @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