cn.com.antcloud.api.riskplus.v1_0.request.UploadFileRequest 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.UploadFileResponse;
import java.lang.String;
import javax.validation.constraints.NotNull;
/**
* 为流量方提供文件上传接口,用于申请件影像资料上传 */
public class UploadFileRequest extends AntCloudProdRequest {
@NotNull
private String orderNo;
@NotNull
private String channelCode;
@NotNull
private String fileName;
@NotNull
private String fileId;
@NotNull
private String fileType;
public UploadFileRequest(String productInstanceId) {
super("riskplus.dubbridge.file.upload", "1.0", "Java-SDK-20230828", productInstanceId);
}
public UploadFileRequest() {
super("riskplus.dubbridge.file.upload", "1.0", null);
this.setSdkVersion("Java-SDK-20230828");
}
/**
* 订单号 */
public String getOrderNo() {
return this.orderNo;
}
/**
* 订单号 */
public void setOrderNo(String orderNo) {
this.orderNo = orderNo;
}
/**
* 渠道号 */
public String getChannelCode() {
return this.channelCode;
}
/**
* 渠道号 */
public void setChannelCode(String channelCode) {
this.channelCode = channelCode;
}
/**
* 文件名 */
public String getFileName() {
return this.fileName;
}
/**
* 文件名 */
public void setFileName(String fileName) {
this.fileName = fileName;
}
/**
* 文件id */
public String getFileId() {
return this.fileId;
}
/**
* 文件id */
public void setFileId(String fileId) {
this.fileId = fileId;
}
/**
* 文件类型 */
public String getFileType() {
return this.fileType;
}
/**
* 文件类型 */
public void setFileType(String fileType) {
this.fileType = fileType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy