com.alipay.api.domain.AlipayEcoSignFlowCancelModel 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 com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 签署流程撤销(E签宝)
*
* @author auto create
* @since 1.0, 2022-07-21 15:48:58
*/
public class AlipayEcoSignFlowCancelModel extends AlipayObject {
private static final long serialVersionUID = 1689629548849267721L;
/**
* 流程id,通过 创建电子合同签署流程(alipay.eco.contract.signflows.create)接口获取。
*/
@ApiField("flow_id")
private String flowId;
/**
* 撤销原因,默认为"撤销"。商家可自定义。
*/
@ApiField("revoke_reason")
private String revokeReason;
public String getFlowId() {
return this.flowId;
}
public void setFlowId(String flowId) {
this.flowId = flowId;
}
public String getRevokeReason() {
return this.revokeReason;
}
public void setRevokeReason(String revokeReason) {
this.revokeReason = revokeReason;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy