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

com.aliyun.dingtalkdrive_1_0.models.ListSpacesRequest 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 ListSpacesRequest extends TeaModel {
    // 分页大小
    @NameInMap("maxResults")
    public Integer maxResults;

    // 分页加载锚点
    @NameInMap("nextToken")
    public String nextToken;

    // 空间类型
    @NameInMap("spaceType")
    public String spaceType;

    // 用户id
    @NameInMap("unionId")
    public String unionId;

    public static ListSpacesRequest build(java.util.Map map) throws Exception {
        ListSpacesRequest self = new ListSpacesRequest();
        return TeaModel.build(map, self);
    }

    public ListSpacesRequest setMaxResults(Integer maxResults) {
        this.maxResults = maxResults;
        return this;
    }
    public Integer getMaxResults() {
        return this.maxResults;
    }

    public ListSpacesRequest setNextToken(String nextToken) {
        this.nextToken = nextToken;
        return this;
    }
    public String getNextToken() {
        return this.nextToken;
    }

    public ListSpacesRequest setSpaceType(String spaceType) {
        this.spaceType = spaceType;
        return this;
    }
    public String getSpaceType() {
        return this.spaceType;
    }

    public ListSpacesRequest setUnionId(String unionId) {
        this.unionId = unionId;
        return this;
    }
    public String getUnionId() {
        return this.unionId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy