All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.antgroup.antchain.openapi.twc.models.NotaryFlowDetailQueryReq Maven / Gradle / Ivy

There is a newer version: 1.12.23
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.twc.models;

import com.aliyun.tea.*;

public class NotaryFlowDetailQueryReq extends TeaModel {
    // 全流程存证模板ID
    @NameInMap("template_id")
    @Validation(required = true)
    public String templateId;

    // 全流程存证流程id
    @NameInMap("flow_id")
    @Validation(required = true)
    public String flowId;

    // 链上证据包对应的链上交易Hash
    @NameInMap("chain_pack_tx_hash")
    @Validation(required = true)
    public String chainPackTxHash;

    // 链上证据包授权码
    @NameInMap("authcode")
    @Validation(required = true)
    public String authcode;

    public static NotaryFlowDetailQueryReq build(java.util.Map map) throws Exception {
        NotaryFlowDetailQueryReq self = new NotaryFlowDetailQueryReq();
        return TeaModel.build(map, self);
    }

    public NotaryFlowDetailQueryReq setTemplateId(String templateId) {
        this.templateId = templateId;
        return this;
    }
    public String getTemplateId() {
        return this.templateId;
    }

    public NotaryFlowDetailQueryReq setFlowId(String flowId) {
        this.flowId = flowId;
        return this;
    }
    public String getFlowId() {
        return this.flowId;
    }

    public NotaryFlowDetailQueryReq setChainPackTxHash(String chainPackTxHash) {
        this.chainPackTxHash = chainPackTxHash;
        return this;
    }
    public String getChainPackTxHash() {
        return this.chainPackTxHash;
    }

    public NotaryFlowDetailQueryReq setAuthcode(String authcode) {
        this.authcode = authcode;
        return this;
    }
    public String getAuthcode() {
        return this.authcode;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy