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

com.larksuite.oapi.service.application.v6.model.MessageOverviewItem Maven / Gradle / Ivy

Go to download

Larksuite open platform facilitates the integration of enterprise applications and larksuite, making collaboration and management more efficient

There is a newer version: 1.0.18-rc8
Show newest version
// Code generated by lark suite oapi sdk gen
package com.larksuite.oapi.service.application.v6.model;
import com.google.gson.annotations.SerializedName;

public class MessageOverviewItem {
    @SerializedName("page_view")
    private Long pageView;
    @SerializedName("unique_visitor")
    private Long uniqueVisitor;
    @SerializedName("chat_type")
    private String chatType;
    @SerializedName("message_type")
    private String messageType;
    @SerializedName("event_type")
    private String eventType;

    public Long getPageView() {
        return this.pageView;
    }

    public void setPageView(Long pageView) {
        this.pageView = pageView;
    }

    public Long getUniqueVisitor() {
        return this.uniqueVisitor;
    }

    public void setUniqueVisitor(Long uniqueVisitor) {
        this.uniqueVisitor = uniqueVisitor;
    }

    public String getChatType() {
        return this.chatType;
    }

    public void setChatType(String chatType) {
        this.chatType = chatType;
    }

    public String getMessageType() {
        return this.messageType;
    }

    public void setMessageType(String messageType) {
        this.messageType = messageType;
    }

    public String getEventType() {
        return this.eventType;
    }

    public void setEventType(String eventType) {
        this.eventType = eventType;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy