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

com.aliyun.dingtalkindustry_1_0.models.QueryMedicalEventsResponseBody 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.dingtalkindustry_1_0.models;

import com.aliyun.tea.*;

public class QueryMedicalEventsResponseBody extends TeaModel {
    // 事件详情列表
    @NameInMap("content")
    public java.util.List content;

    // 是否成功
    @NameInMap("success")
    public Boolean success;

    // 数据总量
    @NameInMap("totalCount")
    public Long totalCount;

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

    public QueryMedicalEventsResponseBody setContent(java.util.List content) {
        this.content = content;
        return this;
    }
    public java.util.List getContent() {
        return this.content;
    }

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

    public QueryMedicalEventsResponseBody setTotalCount(Long totalCount) {
        this.totalCount = totalCount;
        return this;
    }
    public Long getTotalCount() {
        return this.totalCount;
    }

    public static class QueryMedicalEventsResponseBodyContent extends TeaModel {
        // 事件code
        @NameInMap("code")
        public String code;

        // 事件内容
        @NameInMap("content")
        public String content;

        // 事件id
        @NameInMap("eventId")
        public Long eventId;

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

        public QueryMedicalEventsResponseBodyContent setCode(String code) {
            this.code = code;
            return this;
        }
        public String getCode() {
            return this.code;
        }

        public QueryMedicalEventsResponseBodyContent setContent(String content) {
            this.content = content;
            return this;
        }
        public String getContent() {
            return this.content;
        }

        public QueryMedicalEventsResponseBodyContent setEventId(Long eventId) {
            this.eventId = eventId;
            return this;
        }
        public Long getEventId() {
            return this.eventId;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy