com.antgroup.antchain.openapi.twc.models.GetCourtFilenotaryResponse 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 GetCourtFilenotaryResponse extends TeaModel {
// 请求唯一ID,用于链路跟踪和问题排查
@NameInMap("req_msg_id")
public String reqMsgId;
// 结果码,一般OK表示调用成功
@NameInMap("result_code")
public String resultCode;
// 异常信息的文本描述
@NameInMap("result_msg")
public String resultMsg;
// 业务类型标识
@NameInMap("business_type")
public String businessType;
// 数据类型标识
@NameInMap("data_type")
public String dataType;
// 文件哈希
@NameInMap("file_hash")
public String fileHash;
// 文件名
@NameInMap("file_name")
public String fileName;
// 可信时间戳
@NameInMap("tsr")
public TsrResponse tsr;
// 对应的法院编号
@NameInMap("agency_code")
public String agencyCode;
// 对应的法院应用ID
@NameInMap("application_code")
public String applicationCode;
public static GetCourtFilenotaryResponse build(java.util.Map map) throws Exception {
GetCourtFilenotaryResponse self = new GetCourtFilenotaryResponse();
return TeaModel.build(map, self);
}
public GetCourtFilenotaryResponse setReqMsgId(String reqMsgId) {
this.reqMsgId = reqMsgId;
return this;
}
public String getReqMsgId() {
return this.reqMsgId;
}
public GetCourtFilenotaryResponse setResultCode(String resultCode) {
this.resultCode = resultCode;
return this;
}
public String getResultCode() {
return this.resultCode;
}
public GetCourtFilenotaryResponse setResultMsg(String resultMsg) {
this.resultMsg = resultMsg;
return this;
}
public String getResultMsg() {
return this.resultMsg;
}
public GetCourtFilenotaryResponse setBusinessType(String businessType) {
this.businessType = businessType;
return this;
}
public String getBusinessType() {
return this.businessType;
}
public GetCourtFilenotaryResponse setDataType(String dataType) {
this.dataType = dataType;
return this;
}
public String getDataType() {
return this.dataType;
}
public GetCourtFilenotaryResponse setFileHash(String fileHash) {
this.fileHash = fileHash;
return this;
}
public String getFileHash() {
return this.fileHash;
}
public GetCourtFilenotaryResponse setFileName(String fileName) {
this.fileName = fileName;
return this;
}
public String getFileName() {
return this.fileName;
}
public GetCourtFilenotaryResponse setTsr(TsrResponse tsr) {
this.tsr = tsr;
return this;
}
public TsrResponse getTsr() {
return this.tsr;
}
public GetCourtFilenotaryResponse setAgencyCode(String agencyCode) {
this.agencyCode = agencyCode;
return this;
}
public String getAgencyCode() {
return this.agencyCode;
}
public GetCourtFilenotaryResponse setApplicationCode(String applicationCode) {
this.applicationCode = applicationCode;
return this;
}
public String getApplicationCode() {
return this.applicationCode;
}
}