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

com.aliyun.dingtalkesign_1_0.models.CancelCorpAuthResponseBody Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class CancelCorpAuthResponseBody extends TeaModel {
    @NameInMap("code")
    public Integer code;

    @NameInMap("data")
    public CancelCorpAuthResponseBodyData data;

    @NameInMap("message")
    public String message;

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

    public CancelCorpAuthResponseBody setCode(Integer code) {
        this.code = code;
        return this;
    }
    public Integer getCode() {
        return this.code;
    }

    public CancelCorpAuthResponseBody setData(CancelCorpAuthResponseBodyData data) {
        this.data = data;
        return this;
    }
    public CancelCorpAuthResponseBodyData getData() {
        return this.data;
    }

    public CancelCorpAuthResponseBody setMessage(String message) {
        this.message = message;
        return this;
    }
    public String getMessage() {
        return this.message;
    }

    public static class CancelCorpAuthResponseBodyData extends TeaModel {
        @NameInMap("result")
        public Boolean result;

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

        public CancelCorpAuthResponseBodyData setResult(Boolean result) {
            this.result = result;
            return this;
        }
        public Boolean getResult() {
            return this.result;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy