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

com.antgroup.antchain.openapi.twc.models.WitnessSignResult 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 WitnessSignResult extends TeaModel {
    // 签名结果,外部用户签署返回
    @NameInMap("sign_result")
    public String signResult;

    // 签署日志id,外部用户签署返回
    @NameInMap("signlog_id")
    public String signlogId;

    // 第三方文档id
    @NameInMap("third_doc_id")
    public String thirdDocId;

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

    public WitnessSignResult setSignResult(String signResult) {
        this.signResult = signResult;
        return this;
    }
    public String getSignResult() {
        return this.signResult;
    }

    public WitnessSignResult setSignlogId(String signlogId) {
        this.signlogId = signlogId;
        return this;
    }
    public String getSignlogId() {
        return this.signlogId;
    }

    public WitnessSignResult setThirdDocId(String thirdDocId) {
        this.thirdDocId = thirdDocId;
        return this;
    }
    public String getThirdDocId() {
        return this.thirdDocId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy