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

com.slack.api.model.event.PongEvent Maven / Gradle / Ivy

There is a newer version: 1.44.1
Show newest version
package com.slack.api.model.event;

import lombok.Data;

import java.time.Instant;

/**
 * The pong event is sent in response to a 'ping' message previously sent. The id and
 * other fields will match that of the ping message.
 * 

* https://api.slack.com/rtm#ping_and_pong */ @Data public class PongEvent implements Event { public static final String TYPE_NAME = "pong"; private final String type = TYPE_NAME; private Long replyTo; private Instant time; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy