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

com.aliyun.dingtalkesign_1_0.models.CorpConsoleResponseBody 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 CorpConsoleResponseBody extends TeaModel {
    @NameInMap("code")
    public Integer code;

    @NameInMap("data")
    public CorpConsoleResponseBodyData data;

    @NameInMap("message")
    public String message;

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

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

    public CorpConsoleResponseBody setData(CorpConsoleResponseBodyData data) {
        this.data = data;
        return this;
    }
    public CorpConsoleResponseBodyData getData() {
        return this.data;
    }

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

    public static class CorpConsoleResponseBodyData extends TeaModel {
        @NameInMap("orgConsoleUrl")
        public Long orgConsoleUrl;

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

        public CorpConsoleResponseBodyData setOrgConsoleUrl(Long orgConsoleUrl) {
            this.orgConsoleUrl = orgConsoleUrl;
            return this;
        }
        public Long getOrgConsoleUrl() {
            return this.orgConsoleUrl;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy