com.aliyun.dingtalkhrm_1_0.models.MasterDatasGetRequest 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 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;
}
}