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

com.aliyun.dingtalkbizfinance_2_0.models.BankGatewayInvokeRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkbizfinance_2_0.models;

import com.aliyun.tea.*;

public class BankGatewayInvokeRequest extends TeaModel {
    /**
     * example:
     * 

bankHttp

*/ @NameInMap("actionType") public String actionType; @NameInMap("inputData") public String inputData; /** * example: *

https://cdc.cmbchina.com/cdcserver/api/v2

*/ @NameInMap("url") public String url; public static BankGatewayInvokeRequest build(java.util.Map map) throws Exception { BankGatewayInvokeRequest self = new BankGatewayInvokeRequest(); return TeaModel.build(map, self); } public BankGatewayInvokeRequest setActionType(String actionType) { this.actionType = actionType; return this; } public String getActionType() { return this.actionType; } public BankGatewayInvokeRequest setInputData(String inputData) { this.inputData = inputData; return this; } public String getInputData() { return this.inputData; } public BankGatewayInvokeRequest setUrl(String url) { this.url = url; return this; } public String getUrl() { return this.url; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy