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

com.aliyun.dingtalkcontract_1_0.models.EsignUserVerifyResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkcontract_1_0.models;

import com.aliyun.tea.*;

public class EsignUserVerifyResponseBody extends TeaModel {
    @NameInMap("result")
    public EsignUserVerifyResponseBodyResult result;

    /**
     * 

This parameter is required.

*/ @NameInMap("success") public Boolean success; public static EsignUserVerifyResponseBody build(java.util.Map map) throws Exception { EsignUserVerifyResponseBody self = new EsignUserVerifyResponseBody(); return TeaModel.build(map, self); } public EsignUserVerifyResponseBody setResult(EsignUserVerifyResponseBodyResult result) { this.result = result; return this; } public EsignUserVerifyResponseBodyResult getResult() { return this.result; } public EsignUserVerifyResponseBody setSuccess(Boolean success) { this.success = success; return this; } public Boolean getSuccess() { return this.success; } public static class EsignUserVerifyResponseBodyResult extends TeaModel { @NameInMap("canAccess") public Boolean canAccess; public static EsignUserVerifyResponseBodyResult build(java.util.Map map) throws Exception { EsignUserVerifyResponseBodyResult self = new EsignUserVerifyResponseBodyResult(); return TeaModel.build(map, self); } public EsignUserVerifyResponseBodyResult setCanAccess(Boolean canAccess) { this.canAccess = canAccess; return this; } public Boolean getCanAccess() { return this.canAccess; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy