cn.com.antcloud.api.ato.v1_0.request.CancelSignFlowRequest 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.CancelSignFlowResponse;
import cn.com.antcloud.api.product.AntCloudProdRequest;
import java.lang.String;
import javax.validation.constraints.NotNull;
/**
* 撤销签署流程 */
public class CancelSignFlowRequest extends AntCloudProdRequest {
@NotNull
private String signNo;
private String revokeReason;
private String operatorId;
public CancelSignFlowRequest(String productInstanceId) {
super("antchain.ato.sign.flow.cancel", "1.0", "Java-SDK-20240923", productInstanceId);
}
public CancelSignFlowRequest() {
super("antchain.ato.sign.flow.cancel", "1.0", null);
this.setSdkVersion("Java-SDK-20240923");
}
/**
* 签署合同单号 */
public String getSignNo() {
return this.signNo;
}
/**
* 签署合同单号 */
public void setSignNo(String signNo) {
this.signNo = signNo;
}
/**
* 默认:“撤销”,最大长度50 */
public String getRevokeReason() {
return this.revokeReason;
}
/**
* 默认:“撤销”,最大长度50 */
public void setRevokeReason(String revokeReason) {
this.revokeReason = revokeReason;
}
/**
* 发起人账户id,即发起本次签署的操作人个人账号id;如不传,默认由对接平台发起 */
public String getOperatorId() {
return this.operatorId;
}
/**
* 发起人账户id,即发起本次签署的操作人个人账号id;如不传,默认由对接平台发起 */
public void setOperatorId(String operatorId) {
this.operatorId = operatorId;
}
}