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

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

    @NameInMap("product_instance_id")
    public String productInstanceId;

    // 申请人的身份信息
    @NameInMap("applier")
    @Validation(required = true)
    public Identity applier;

    // 存证证明所要展示的存证信息,可填多个
    @NameInMap("notary_info")
    @Validation(required = true)
    public java.util.List notaryInfo;

    // 存证证明的类型:STANDARD(标准存证证明)或COPYRIGHT(版权存证证明),默认为COPYRIGHT
    @NameInMap("type")
    public String type;

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

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

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

    public InitCertificationRequest setApplier(Identity applier) {
        this.applier = applier;
        return this;
    }
    public Identity getApplier() {
        return this.applier;
    }

    public InitCertificationRequest setNotaryInfo(java.util.List notaryInfo) {
        this.notaryInfo = notaryInfo;
        return this;
    }
    public java.util.List getNotaryInfo() {
        return this.notaryInfo;
    }

    public InitCertificationRequest setType(String type) {
        this.type = type;
        return this;
    }
    public String getType() {
        return this.type;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy