com.antgroup.antchain.openapi.twc.models.WitnessSignData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-twc Show documentation
Show all versions of openapi-twc Show documentation
Ant Chain TWC SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.twc.models;
import com.aliyun.tea.*;
public class WitnessSignData extends TeaModel {
// 印章图片fileKey列表
@NameInMap("seal_file_keys")
public java.util.List sealFileKeys;
// 印章id列表
@NameInMap("seal_ids")
public java.util.List sealIds;
// 待签署文档摘要值,批量签时必传
@NameInMap("sign_hash")
public String signHash;
// 签署位置信息
@NameInMap("sign_pos_data")
public String signPosData;
// 第三方文档id,批量签时必传
@NameInMap("third_doc_id")
public String thirdDocId;
public static WitnessSignData build(java.util.Map map) throws Exception {
WitnessSignData self = new WitnessSignData();
return TeaModel.build(map, self);
}
public WitnessSignData setSealFileKeys(java.util.List sealFileKeys) {
this.sealFileKeys = sealFileKeys;
return this;
}
public java.util.List getSealFileKeys() {
return this.sealFileKeys;
}
public WitnessSignData setSealIds(java.util.List sealIds) {
this.sealIds = sealIds;
return this;
}
public java.util.List getSealIds() {
return this.sealIds;
}
public WitnessSignData setSignHash(String signHash) {
this.signHash = signHash;
return this;
}
public String getSignHash() {
return this.signHash;
}
public WitnessSignData setSignPosData(String signPosData) {
this.signPosData = signPosData;
return this;
}
public String getSignPosData() {
return this.signPosData;
}
public WitnessSignData setThirdDocId(String thirdDocId) {
this.thirdDocId = thirdDocId;
return this;
}
public String getThirdDocId() {
return this.thirdDocId;
}
}