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

com.github.twitch4j.pubsub.events.SharedChatSessionUpdatedEvent Maven / Gradle / Ivy

The newest version!
package com.github.twitch4j.pubsub.events;

import com.github.twitch4j.pubsub.domain.SharedChatSession;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import org.jetbrains.annotations.ApiStatus;

import java.time.Instant;

@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = true)
public final class SharedChatSessionUpdatedEvent extends SharedChatPubSubEvent {
    @ApiStatus.Internal
    public SharedChatSessionUpdatedEvent(String channelId, Instant timestamp, SharedChatSession session) {
        super(channelId, timestamp, session);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy