![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkhrm_1_0.models.MasterDataTenantQueyRequest 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 MasterDataTenantQueyRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("entityCode")
public String entityCode;
/**
* This parameter is required.
*/
@NameInMap("scopeCode")
public String scopeCode;
public static MasterDataTenantQueyRequest build(java.util.Map map) throws Exception {
MasterDataTenantQueyRequest self = new MasterDataTenantQueyRequest();
return TeaModel.build(map, self);
}
public MasterDataTenantQueyRequest setEntityCode(String entityCode) {
this.entityCode = entityCode;
return this;
}
public String getEntityCode() {
return this.entityCode;
}
public MasterDataTenantQueyRequest setScopeCode(String scopeCode) {
this.scopeCode = scopeCode;
return this;
}
public String getScopeCode() {
return this.scopeCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy