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

com.aliyun.dingtalkfinance_1_0.models.QueryUserAgreementRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkfinance_1_0.models;

import com.aliyun.tea.*;

public class QueryUserAgreementRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

TRADE

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

This parameter is required.

* * example: *

WITHHOLDING

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

This parameter is required.

* * example: *

202111090001

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

This parameter is required.

* * example: *

1001

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

This parameter is required.

* * example: *

2120493284

*/ @NameInMap("userId") public String userId; public static QueryUserAgreementRequest build(java.util.Map map) throws Exception { QueryUserAgreementRequest self = new QueryUserAgreementRequest(); return TeaModel.build(map, self); } public QueryUserAgreementRequest setBizCode(String bizCode) { this.bizCode = bizCode; return this; } public String getBizCode() { return this.bizCode; } public QueryUserAgreementRequest setBizScene(String bizScene) { this.bizScene = bizScene; return this; } public String getBizScene() { return this.bizScene; } public QueryUserAgreementRequest setInstId(String instId) { this.instId = instId; return this; } public String getInstId() { return this.instId; } public QueryUserAgreementRequest setSubInstId(String subInstId) { this.subInstId = subInstId; return this; } public String getSubInstId() { return this.subInstId; } public QueryUserAgreementRequest setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy