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

com.aliyun.dingtalkdoc_2_0.models.RelatedSpacesRequest 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.dingtalkdoc_2_0.models;

import com.aliyun.tea.*;

public class RelatedSpacesRequest extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("maxResults") public Integer maxResults; @NameInMap("nextToken") public String nextToken; /** *

This parameter is required.

* * example: *

abcd

*/ @NameInMap("operatorId") public String operatorId; /** * example: *

abc

*/ @NameInMap("teamId") public String teamId; public static RelatedSpacesRequest build(java.util.Map map) throws Exception { RelatedSpacesRequest self = new RelatedSpacesRequest(); return TeaModel.build(map, self); } public RelatedSpacesRequest setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public RelatedSpacesRequest setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public RelatedSpacesRequest setOperatorId(String operatorId) { this.operatorId = operatorId; return this; } public String getOperatorId() { return this.operatorId; } public RelatedSpacesRequest setTeamId(String teamId) { this.teamId = teamId; return this; } public String getTeamId() { return this.teamId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy