com.aliyun.dingtalkdoc_2_0.models.ListRelatedSpaceTeamsRequest 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 ListRelatedSpaceTeamsRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* abcd
*/
@NameInMap("operatorId")
public String operatorId;
@NameInMap("type")
public Integer type;
public static ListRelatedSpaceTeamsRequest build(java.util.Map map) throws Exception {
ListRelatedSpaceTeamsRequest self = new ListRelatedSpaceTeamsRequest();
return TeaModel.build(map, self);
}
public ListRelatedSpaceTeamsRequest setOperatorId(String operatorId) {
this.operatorId = operatorId;
return this;
}
public String getOperatorId() {
return this.operatorId;
}
public ListRelatedSpaceTeamsRequest setType(Integer type) {
this.type = type;
return this;
}
public Integer getType() {
return this.type;
}
}