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

com.aliyun.dingtalkcontract_1_0.models.EsignSyncEventResponseBody 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 EsignSyncEventResponseBody extends TeaModel {
    @NameInMap("result")
    public EsignSyncEventResponseBodyResult result;

    @NameInMap("success")
    public Boolean success;

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

    public EsignSyncEventResponseBody setResult(EsignSyncEventResponseBodyResult result) {
        this.result = result;
        return this;
    }
    public EsignSyncEventResponseBodyResult getResult() {
        return this.result;
    }

    public EsignSyncEventResponseBody setSuccess(Boolean success) {
        this.success = success;
        return this;
    }
    public Boolean getSuccess() {
        return this.success;
    }

    public static class EsignSyncEventResponseBodyResult extends TeaModel {
        /**
         * example:
         * 

外部服务异常

*/ @NameInMap("message") public String message; public static EsignSyncEventResponseBodyResult build(java.util.Map map) throws Exception { EsignSyncEventResponseBodyResult self = new EsignSyncEventResponseBodyResult(); return TeaModel.build(map, self); } public EsignSyncEventResponseBodyResult setMessage(String message) { this.message = message; return this; } public String getMessage() { return this.message; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy