com.aliyun.dingtalkresident_1_0.models.GetSpacesInfoRequest 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.dingtalkresident_1_0.models;
import com.aliyun.tea.*;
public class GetSpacesInfoRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("referIds")
public java.util.List referIds;
/**
* This parameter is required.
*/
@NameInMap("residentCorpId")
public String residentCorpId;
public static GetSpacesInfoRequest build(java.util.Map map) throws Exception {
GetSpacesInfoRequest self = new GetSpacesInfoRequest();
return TeaModel.build(map, self);
}
public GetSpacesInfoRequest setReferIds(java.util.List referIds) {
this.referIds = referIds;
return this;
}
public java.util.List getReferIds() {
return this.referIds;
}
public GetSpacesInfoRequest setResidentCorpId(String residentCorpId) {
this.residentCorpId = residentCorpId;
return this;
}
public String getResidentCorpId() {
return this.residentCorpId;
}
}