All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkhrm_1_0.models.UpdateHrmLegalEntityNameResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkhrm_1_0.models;

import com.aliyun.tea.*;

public class UpdateHrmLegalEntityNameResponseBody extends TeaModel {
    @NameInMap("result")
    public UpdateHrmLegalEntityNameResponseBodyResult result;

    @NameInMap("success")
    public Boolean success;

    public static UpdateHrmLegalEntityNameResponseBody build(java.util.Map map) throws Exception {
        UpdateHrmLegalEntityNameResponseBody self = new UpdateHrmLegalEntityNameResponseBody();
        return TeaModel.build(map, self);
    }

    public UpdateHrmLegalEntityNameResponseBody setResult(UpdateHrmLegalEntityNameResponseBodyResult result) {
        this.result = result;
        return this;
    }
    public UpdateHrmLegalEntityNameResponseBodyResult getResult() {
        return this.result;
    }

    public UpdateHrmLegalEntityNameResponseBody setSuccess(Boolean success) {
        this.success = success;
        return this;
    }
    public Boolean getSuccess() {
        return this.success;
    }

    public static class UpdateHrmLegalEntityNameResponseBodyResult extends TeaModel {
        /**
         * example:
         * 

ding123

*/ @NameInMap("corpId") public String corpId; /** * example: *

2023-08-08

*/ @NameInMap("gmtCreate") public Long gmtCreate; /** * example: *

2023-08-08

*/ @NameInMap("gmtModified") public Long gmtModified; /** * example: *

111233

*/ @NameInMap("legalEntityId") public String legalEntityId; /** * example: *

公司2

*/ @NameInMap("legalEntityName") public String legalEntityName; /** * example: *

公2

*/ @NameInMap("legalEntityShortName") public String legalEntityShortName; /** * example: *

1

*/ @NameInMap("legalEntityStatus") public Integer legalEntityStatus; /** * example: *

法人1

*/ @NameInMap("legalPersonName") public String legalPersonName; public static UpdateHrmLegalEntityNameResponseBodyResult build(java.util.Map map) throws Exception { UpdateHrmLegalEntityNameResponseBodyResult self = new UpdateHrmLegalEntityNameResponseBodyResult(); return TeaModel.build(map, self); } public UpdateHrmLegalEntityNameResponseBodyResult setCorpId(String corpId) { this.corpId = corpId; return this; } public String getCorpId() { return this.corpId; } public UpdateHrmLegalEntityNameResponseBodyResult setGmtCreate(Long gmtCreate) { this.gmtCreate = gmtCreate; return this; } public Long getGmtCreate() { return this.gmtCreate; } public UpdateHrmLegalEntityNameResponseBodyResult setGmtModified(Long gmtModified) { this.gmtModified = gmtModified; return this; } public Long getGmtModified() { return this.gmtModified; } public UpdateHrmLegalEntityNameResponseBodyResult setLegalEntityId(String legalEntityId) { this.legalEntityId = legalEntityId; return this; } public String getLegalEntityId() { return this.legalEntityId; } public UpdateHrmLegalEntityNameResponseBodyResult setLegalEntityName(String legalEntityName) { this.legalEntityName = legalEntityName; return this; } public String getLegalEntityName() { return this.legalEntityName; } public UpdateHrmLegalEntityNameResponseBodyResult setLegalEntityShortName(String legalEntityShortName) { this.legalEntityShortName = legalEntityShortName; return this; } public String getLegalEntityShortName() { return this.legalEntityShortName; } public UpdateHrmLegalEntityNameResponseBodyResult setLegalEntityStatus(Integer legalEntityStatus) { this.legalEntityStatus = legalEntityStatus; return this; } public Integer getLegalEntityStatus() { return this.legalEntityStatus; } public UpdateHrmLegalEntityNameResponseBodyResult setLegalPersonName(String legalPersonName) { this.legalPersonName = legalPersonName; return this; } public String getLegalPersonName() { return this.legalPersonName; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy