com.aliyun.dingtalkcontact_1_0.models.CreateCooperateOrgResponseBody 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.dingtalkcontact_1_0.models;
import com.aliyun.tea.*;
public class CreateCooperateOrgResponseBody extends TeaModel {
@NameInMap("cooperateCorpId")
public String cooperateCorpId;
public static CreateCooperateOrgResponseBody build(java.util.Map map) throws Exception {
CreateCooperateOrgResponseBody self = new CreateCooperateOrgResponseBody();
return TeaModel.build(map, self);
}
public CreateCooperateOrgResponseBody setCooperateCorpId(String cooperateCorpId) {
this.cooperateCorpId = cooperateCorpId;
return this;
}
public String getCooperateCorpId() {
return this.cooperateCorpId;
}
}