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

com.aliyun.dingtalkflashmsg_1_0.models.GetConversationResponseBody 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.dingtalkflashmsg_1_0.models;

import com.aliyun.tea.*;

public class GetConversationResponseBody extends TeaModel {
    @NameInMap("result")
    public GetConversationResponseBodyResult result;

    @NameInMap("success")
    public Boolean success;

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

    public GetConversationResponseBody setResult(GetConversationResponseBodyResult result) {
        this.result = result;
        return this;
    }
    public GetConversationResponseBodyResult getResult() {
        return this.result;
    }

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

    public static class GetConversationResponseBodyResult extends TeaModel {
        @NameInMap("corpId")
        public String corpId;

        @NameInMap("memberCount")
        public Integer memberCount;

        @NameInMap("title")
        public String title;

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

        public GetConversationResponseBodyResult setCorpId(String corpId) {
            this.corpId = corpId;
            return this;
        }
        public String getCorpId() {
            return this.corpId;
        }

        public GetConversationResponseBodyResult setMemberCount(Integer memberCount) {
            this.memberCount = memberCount;
            return this;
        }
        public Integer getMemberCount() {
            return this.memberCount;
        }

        public GetConversationResponseBodyResult setTitle(String title) {
            this.title = title;
            return this;
        }
        public String getTitle() {
            return this.title;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy