com.aliyun.dingtalkbizfinance_2_0.models.BankGatewayInvokeRequest 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.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;
}
}