![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkindustry_1_0.models.BusinessMatchRequest 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.dingtalkindustry_1_0.models;
import com.aliyun.tea.*;
public class BusinessMatchRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("businessInfo")
public String businessInfo;
/**
* This parameter is required.
*/
@NameInMap("corpName")
public String corpName;
/**
* This parameter is required.
*/
@NameInMap("userId")
public String userId;
public static BusinessMatchRequest build(java.util.Map map) throws Exception {
BusinessMatchRequest self = new BusinessMatchRequest();
return TeaModel.build(map, self);
}
public BusinessMatchRequest setBusinessInfo(String businessInfo) {
this.businessInfo = businessInfo;
return this;
}
public String getBusinessInfo() {
return this.businessInfo;
}
public BusinessMatchRequest setCorpName(String corpName) {
this.corpName = corpName;
return this;
}
public String getCorpName() {
return this.corpName;
}
public BusinessMatchRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy