com.antgroup.antchain.openapi.twc.models.ContractSignField 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 ContractSignField extends TeaModel {
// 电子合同用户ID
@NameInMap("account_id")
@Validation(required = true)
public String accountId;
// 电子合同文档ID
@NameInMap("file_id")
@Validation(required = true)
public String fileId;
// 电子合同签署区id
@NameInMap("signfield_id")
@Validation(required = true)
public String signfieldId;
public static ContractSignField build(java.util.Map map) throws Exception {
ContractSignField self = new ContractSignField();
return TeaModel.build(map, self);
}
public ContractSignField setAccountId(String accountId) {
this.accountId = accountId;
return this;
}
public String getAccountId() {
return this.accountId;
}
public ContractSignField setFileId(String fileId) {
this.fileId = fileId;
return this;
}
public String getFileId() {
return this.fileId;
}
public ContractSignField setSignfieldId(String signfieldId) {
this.signfieldId = signfieldId;
return this;
}
public String getSignfieldId() {
return this.signfieldId;
}
}