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