![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkhrm_1_0.models.UpdateHrmLegalEntityWithoutNameResponseBody 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.dingtalkhrm_1_0.models;
import com.aliyun.tea.*;
public class UpdateHrmLegalEntityWithoutNameResponseBody extends TeaModel {
@NameInMap("result")
public UpdateHrmLegalEntityWithoutNameResponseBodyResult result;
@NameInMap("success")
public Boolean success;
public static UpdateHrmLegalEntityWithoutNameResponseBody build(java.util.Map map) throws Exception {
UpdateHrmLegalEntityWithoutNameResponseBody self = new UpdateHrmLegalEntityWithoutNameResponseBody();
return TeaModel.build(map, self);
}
public UpdateHrmLegalEntityWithoutNameResponseBody setResult(UpdateHrmLegalEntityWithoutNameResponseBodyResult result) {
this.result = result;
return this;
}
public UpdateHrmLegalEntityWithoutNameResponseBodyResult getResult() {
return this.result;
}
public UpdateHrmLegalEntityWithoutNameResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class UpdateHrmLegalEntityWithoutNameResponseBodyResult extends TeaModel {
/**
* example:
* ding123
*/
@NameInMap("corpId")
public String corpId;
/**
* example:
* 2023-01-01
*/
@NameInMap("gmtCreate")
public Long gmtCreate;
/**
* example:
* 2023-01-01
*/
@NameInMap("gmtModified")
public Long gmtModified;
/**
* example:
* 123456
*/
@NameInMap("legalEntityId")
public String legalEntityId;
/**
* example:
* 公司1
*/
@NameInMap("legalEntityName")
public String legalEntityName;
/**
* example:
* 公1
*/
@NameInMap("legalEntityShortName")
public String legalEntityShortName;
/**
* example:
* 1
*/
@NameInMap("legalEntityStatus")
public Integer legalEntityStatus;
/**
* example:
* 法人
*/
@NameInMap("legalPersonName")
public String legalPersonName;
public static UpdateHrmLegalEntityWithoutNameResponseBodyResult build(java.util.Map map) throws Exception {
UpdateHrmLegalEntityWithoutNameResponseBodyResult self = new UpdateHrmLegalEntityWithoutNameResponseBodyResult();
return TeaModel.build(map, self);
}
public UpdateHrmLegalEntityWithoutNameResponseBodyResult setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public UpdateHrmLegalEntityWithoutNameResponseBodyResult setGmtCreate(Long gmtCreate) {
this.gmtCreate = gmtCreate;
return this;
}
public Long getGmtCreate() {
return this.gmtCreate;
}
public UpdateHrmLegalEntityWithoutNameResponseBodyResult setGmtModified(Long gmtModified) {
this.gmtModified = gmtModified;
return this;
}
public Long getGmtModified() {
return this.gmtModified;
}
public UpdateHrmLegalEntityWithoutNameResponseBodyResult setLegalEntityId(String legalEntityId) {
this.legalEntityId = legalEntityId;
return this;
}
public String getLegalEntityId() {
return this.legalEntityId;
}
public UpdateHrmLegalEntityWithoutNameResponseBodyResult setLegalEntityName(String legalEntityName) {
this.legalEntityName = legalEntityName;
return this;
}
public String getLegalEntityName() {
return this.legalEntityName;
}
public UpdateHrmLegalEntityWithoutNameResponseBodyResult setLegalEntityShortName(String legalEntityShortName) {
this.legalEntityShortName = legalEntityShortName;
return this;
}
public String getLegalEntityShortName() {
return this.legalEntityShortName;
}
public UpdateHrmLegalEntityWithoutNameResponseBodyResult setLegalEntityStatus(Integer legalEntityStatus) {
this.legalEntityStatus = legalEntityStatus;
return this;
}
public Integer getLegalEntityStatus() {
return this.legalEntityStatus;
}
public UpdateHrmLegalEntityWithoutNameResponseBodyResult setLegalPersonName(String legalPersonName) {
this.legalPersonName = legalPersonName;
return this;
}
public String getLegalPersonName() {
return this.legalPersonName;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy