cn.com.antcloud.api.riskplus.v1_0.request.NotifyDefininnerchannelRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of antcloud-api-riskplus Show documentation
Show all versions of antcloud-api-riskplus Show documentation
Ant Chain API SDK For Java
Copyright (c) 2020-present antgroup.com, https://www.antgroup.com
//
// Copyright (c) 2020-present antgroup.com, https://www.antgroup.com
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
//
package cn.com.antcloud.api.riskplus.v1_0.request;
import cn.com.antcloud.api.product.AntCloudProdRequest;
import cn.com.antcloud.api.riskplus.v1_0.response.NotifyDefininnerchannelResponse;
import java.lang.String;
import javax.validation.constraints.NotNull;
/**
* 用于机构通道通用回调 */
public class NotifyDefininnerchannelRequest extends AntCloudProdRequest {
@NotNull
private String seqNo;
@NotNull
private String apiName;
@NotNull
private String instMemberCode;
@NotNull
private String bizParam;
public NotifyDefininnerchannelRequest(String productInstanceId) {
super("riskplus.dubbridge.defininnerchannel.notify", "1.0", "Java-SDK-20230828", productInstanceId);
}
public NotifyDefininnerchannelRequest() {
super("riskplus.dubbridge.defininnerchannel.notify", "1.0", null);
this.setSdkVersion("Java-SDK-20230828");
}
/**
* 调用流水 */
public String getSeqNo() {
return this.seqNo;
}
/**
* 调用流水 */
public void setSeqNo(String seqNo) {
this.seqNo = seqNo;
}
/**
* 机构平台接口名 */
public String getApiName() {
return this.apiName;
}
/**
* 机构平台接口名 */
public void setApiName(String apiName) {
this.apiName = apiName;
}
/**
* 机构编号 */
public String getInstMemberCode() {
return this.instMemberCode;
}
/**
* 机构编号 */
public void setInstMemberCode(String instMemberCode) {
this.instMemberCode = instMemberCode;
}
/**
* 业务参数Json */
public String getBizParam() {
return this.bizParam;
}
/**
* 业务参数Json */
public void setBizParam(String bizParam) {
this.bizParam = bizParam;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy