com.aliyun.dingtalkresident_1_0.models.ListSubSpaceRequest 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 ListSubSpaceRequest extends TeaModel {
@NameInMap("referId")
public Long referId;
@NameInMap("residentCorpId")
public String residentCorpId;
public static ListSubSpaceRequest build(java.util.Map map) throws Exception {
ListSubSpaceRequest self = new ListSubSpaceRequest();
return TeaModel.build(map, self);
}
public ListSubSpaceRequest setReferId(Long referId) {
this.referId = referId;
return this;
}
public Long getReferId() {
return this.referId;
}
public ListSubSpaceRequest setResidentCorpId(String residentCorpId) {
this.residentCorpId = residentCorpId;
return this;
}
public String getResidentCorpId() {
return this.residentCorpId;
}
}