com.alipay.api.response.AlipayBossProdAntlegalchainNotaryUploadResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.boss.prod.antlegalchain.notary.upload response.
*
* @author auto create
* @since 1.0, 2024-11-05 13:35:11
*/
public class AlipayBossProdAntlegalchainNotaryUploadResponse extends AlipayResponse {
private static final long serialVersionUID = 3139422555116331456L;
/**
* 文件上传返回的fileId,上传失败则无值
*/
@ApiField("file_id")
private String fileId;
/**
* 文件fileKey,即上传路径,上传失败则无值
*/
@ApiField("file_key")
private String fileKey;
public void setFileId(String fileId) {
this.fileId = fileId;
}
public String getFileId( ) {
return this.fileId;
}
public void setFileKey(String fileKey) {
this.fileKey = fileKey;
}
public String getFileKey( ) {
return this.fileKey;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy