cn.com.antcloud.api.ato.v1_0.response.SubmitSignFlowResponse Maven / Gradle / Ivy
//
// 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.ato.v1_0.response;
import cn.com.antcloud.api.product.AntCloudProdResponse;
import java.lang.String;
/**
* 提交电子合同的签署流程(后置签署模式) */
public class SubmitSignFlowResponse extends AntCloudProdResponse {
private String signNo;
private String flowId;
private String accountId;
private String signInfo;
/**
* 签署合同单号 */
public String getSignNo() {
return this.signNo;
}
/**
* 签署合同单号 */
public void setSignNo(String signNo) {
this.signNo = signNo;
}
/**
* 电子签署流程ID */
public String getFlowId() {
return this.flowId;
}
/**
* 电子签署流程ID */
public void setFlowId(String flowId) {
this.flowId = flowId;
}
/**
* 签署用户ID */
public String getAccountId() {
return this.accountId;
}
/**
* 签署用户ID */
public void setAccountId(String accountId) {
this.accountId = accountId;
}
/**
* 签署附加信息,用于获取签署链接等。JSON格式的字符串。 */
public String getSignInfo() {
return this.signInfo;
}
/**
* 签署附加信息,用于获取签署链接等。JSON格式的字符串。 */
public void setSignInfo(String signInfo) {
this.signInfo = signInfo;
}
}