com.alipay.api.domain.SignTaskFileResult 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.domain;
import java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 签约任务结果包含文件
*
* @author auto create
* @since 1.0, 2017-08-08 10:42:59
*/
public class SignTaskFileResult extends AlipayObject {
private static final long serialVersionUID = 1444237675242325699L;
/**
* 业务初始化时传入的流水号
*/
@ApiField("biz_id")
private String bizId;
/**
* 扩展参数信息,可根据不同接入方需求定制内容
*/
@ApiField("biz_info")
private String bizInfo;
/**
* 已签名文档列表
*/
@ApiListField("signed_file_list")
@ApiField("signed_file_info")
private List signedFileList;
/**
* 签约结果
1)FAIL | 解释:签约失败
2)SUCCESS | 解释:完成
3)PROCESS | 解释:签约中
4)EXPIRED | 解释:任务过期
*/
@ApiField("status")
private String status;
/**
* 签约任务编号
*/
@ApiField("task_id")
private String taskId;
public String getBizId() {
return this.bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
}
public String getBizInfo() {
return this.bizInfo;
}
public void setBizInfo(String bizInfo) {
this.bizInfo = bizInfo;
}
public List getSignedFileList() {
return this.signedFileList;
}
public void setSignedFileList(List signedFileList) {
this.signedFileList = signedFileList;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getTaskId() {
return this.taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy