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

com.aliyun.dingtalkindustry_1_0.models.BusinessMatchRequest Maven / Gradle / Ivy

There is a newer version: 2.1.88
Show newest version
// 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