cn.com.antcloud.api.ato.v1_0.request.AuthSignFlowRequest 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.request;
import cn.com.antcloud.api.ato.v1_0.response.AuthSignFlowResponse;
import cn.com.antcloud.api.product.AntCloudProdRequest;
import java.lang.String;
import javax.validation.constraints.NotNull;
/**
* 电子合同签署模块,机构调用这个接口进行签署的授权落签 */
public class AuthSignFlowRequest extends AntCloudProdRequest {
@NotNull
private String signNo;
private String tag;
private String bizFlowId;
private String accountId;
public AuthSignFlowRequest(String productInstanceId) {
super("antchain.ato.sign.flow.auth", "1.0", "Java-SDK-20240808", productInstanceId);
}
public AuthSignFlowRequest() {
super("antchain.ato.sign.flow.auth", "1.0", null);
this.setSdkVersion("Java-SDK-20240808");
}
/**
* 签署的电子合同ID */
public String getSignNo() {
return this.signNo;
}
/**
* 签署的电子合同ID */
public void setSignNo(String signNo) {
this.signNo = signNo;
}
/**
* 签署区域的tag,和发起签署流程的机构的tag对应。 */
public String getTag() {
return this.tag;
}
/**
* 签署区域的tag,和发起签署流程的机构的tag对应。 */
public void setTag(String tag) {
this.tag = tag;
}
/**
* 电子合同签署服务返回的biz_flow_id */
public String getBizFlowId() {
return this.bizFlowId;
}
/**
* 电子合同签署服务返回的biz_flow_id */
public void setBizFlowId(String bizFlowId) {
this.bizFlowId = bizFlowId;
}
/**
* 电子合同签署服务的返回的account_id */
public String getAccountId() {
return this.accountId;
}
/**
* 电子合同签署服务的返回的account_id */
public void setAccountId(String accountId) {
this.accountId = accountId;
}
}