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

com.aliyun.dingtalkhrm_1_0.models.UpdateHrmLegalEntityNameRequest 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 UpdateHrmLegalEntityNameRequest extends TeaModel {
    /**
     * example:
     * 

57

*/ @NameInMap("dingTenantId") public Long dingTenantId; /** *

This parameter is required.

* * example: *

公司2

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

This parameter is required.

* * example: *

公司1

*/ @NameInMap("originLegalEntityName") public String originLegalEntityName; public static UpdateHrmLegalEntityNameRequest build(java.util.Map map) throws Exception { UpdateHrmLegalEntityNameRequest self = new UpdateHrmLegalEntityNameRequest(); return TeaModel.build(map, self); } public UpdateHrmLegalEntityNameRequest setDingTenantId(Long dingTenantId) { this.dingTenantId = dingTenantId; return this; } public Long getDingTenantId() { return this.dingTenantId; } public UpdateHrmLegalEntityNameRequest setLegalEntityName(String legalEntityName) { this.legalEntityName = legalEntityName; return this; } public String getLegalEntityName() { return this.legalEntityName; } public UpdateHrmLegalEntityNameRequest setOriginLegalEntityName(String originLegalEntityName) { this.originLegalEntityName = originLegalEntityName; return this; } public String getOriginLegalEntityName() { return this.originLegalEntityName; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy