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

com.antgroup.antchain.openapi.tdm.models.CertUseParams Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class CertUseParams extends TeaModel {
    // 证明文件ID
    @NameInMap("issue_id")
    @Validation(required = true)
    public String issueId;

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

    public CertUseParams setIssueId(String issueId) {
        this.issueId = issueId;
        return this;
    }
    public String getIssueId() {
        return this.issueId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy