com.antgroup.antchain.openapi.twc.models.CreateLeaseBiznotaryRequest 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 CreateLeaseBiznotaryRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// 要存证的文件哈希
@NameInMap("hash")
@Validation(required = true)
public String hash;
// 租赁机构社会统一信用码
@NameInMap("lease_corp_id")
@Validation(required = true)
public String leaseCorpId;
// 租赁机构公司名称
@NameInMap("lease_corp_name")
@Validation(required = true)
public String leaseCorpName;
// 租赁机构法人姓名
@NameInMap("lease_corp_owner_name")
@Validation(required = true)
public String leaseCorpOwnerName;
// 被代理机构金融科技租户id
@NameInMap("agent_lease_id")
public String agentLeaseId;
// 模式,代理模式为isvMode
@NameInMap("mode")
public String mode;
public static CreateLeaseBiznotaryRequest build(java.util.Map map) throws Exception {
CreateLeaseBiznotaryRequest self = new CreateLeaseBiznotaryRequest();
return TeaModel.build(map, self);
}
public CreateLeaseBiznotaryRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public CreateLeaseBiznotaryRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public CreateLeaseBiznotaryRequest setHash(String hash) {
this.hash = hash;
return this;
}
public String getHash() {
return this.hash;
}
public CreateLeaseBiznotaryRequest setLeaseCorpId(String leaseCorpId) {
this.leaseCorpId = leaseCorpId;
return this;
}
public String getLeaseCorpId() {
return this.leaseCorpId;
}
public CreateLeaseBiznotaryRequest setLeaseCorpName(String leaseCorpName) {
this.leaseCorpName = leaseCorpName;
return this;
}
public String getLeaseCorpName() {
return this.leaseCorpName;
}
public CreateLeaseBiznotaryRequest setLeaseCorpOwnerName(String leaseCorpOwnerName) {
this.leaseCorpOwnerName = leaseCorpOwnerName;
return this;
}
public String getLeaseCorpOwnerName() {
return this.leaseCorpOwnerName;
}
public CreateLeaseBiznotaryRequest setAgentLeaseId(String agentLeaseId) {
this.agentLeaseId = agentLeaseId;
return this;
}
public String getAgentLeaseId() {
return this.agentLeaseId;
}
public CreateLeaseBiznotaryRequest setMode(String mode) {
this.mode = mode;
return this;
}
public String getMode() {
return this.mode;
}
}