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

com.github.jamesnetherton.zulip.client.api.event.Event Maven / Gradle / Ivy

The newest version!
package com.github.jamesnetherton.zulip.client.api.event;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Defines a Zulip event.
 */
public class Event {

    @JsonProperty
    private long id;

    @JsonProperty
    private String type;

    public long getId() {
        return id;
    }

    public String getType() {
        return type;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy