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

com.antgroup.antchain.openapi.twc.models.GetDataflowTextRequest 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 GetDataflowTextRequest extends TeaModel {
    // OAuth模式下的授权token
    @NameInMap("auth_token")
    public String authToken;

    @NameInMap("product_instance_id")
    public String productInstanceId;

    // 存证地址
    @NameInMap("tx_hash")
    @Validation(required = true)
    public String txHash;

    // 存证方使用的8位英文租户id,当存证地址来自其他存证方用户时必填
    @NameInMap("target_tenant_id")
    public String targetTenantId;

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

    public GetDataflowTextRequest setAuthToken(String authToken) {
        this.authToken = authToken;
        return this;
    }
    public String getAuthToken() {
        return this.authToken;
    }

    public GetDataflowTextRequest setProductInstanceId(String productInstanceId) {
        this.productInstanceId = productInstanceId;
        return this;
    }
    public String getProductInstanceId() {
        return this.productInstanceId;
    }

    public GetDataflowTextRequest setTxHash(String txHash) {
        this.txHash = txHash;
        return this;
    }
    public String getTxHash() {
        return this.txHash;
    }

    public GetDataflowTextRequest setTargetTenantId(String targetTenantId) {
        this.targetTenantId = targetTenantId;
        return this;
    }
    public String getTargetTenantId() {
        return this.targetTenantId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy