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

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

This parameter is required.

* * example: *

uk1231

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

This parameter is required.

* * example: *

PERFORMANCE

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

This parameter is required.

* * example: *

3

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

This parameter is required.

* * example: *

base

*/ @NameInMap("viewEntityCode") public String viewEntityCode; public static MasterDatasGetRequest build(java.util.Map map) throws Exception { MasterDatasGetRequest self = new MasterDatasGetRequest(); return TeaModel.build(map, self); } public MasterDatasGetRequest setObjId(String objId) { this.objId = objId; return this; } public String getObjId() { return this.objId; } public MasterDatasGetRequest setScopeCode(String scopeCode) { this.scopeCode = scopeCode; return this; } public String getScopeCode() { return this.scopeCode; } public MasterDatasGetRequest setTenantId(Long tenantId) { this.tenantId = tenantId; return this; } public Long getTenantId() { return this.tenantId; } public MasterDatasGetRequest setViewEntityCode(String viewEntityCode) { this.viewEntityCode = viewEntityCode; return this; } public String getViewEntityCode() { return this.viewEntityCode; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy