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

com.github.twitch4j.helix.domain.SharedChatSession Maven / Gradle / Ivy

package com.github.twitch4j.helix.domain;

import lombok.AccessLevel;
import lombok.Data;
import lombok.Setter;

import java.time.Instant;
import java.util.List;

@Data
@Setter(AccessLevel.PRIVATE)
public class SharedChatSession {

    /**
     * The unique identifier for the shared chat session.
     */
    private String sessionId;

    /**
     * The User ID of the host channel.
     */
    private String hostBroadcasterId;

    /**
     * The list of participants in the session.
     */
    private List participants;

    /**
     * The UTC date and time for when the session was created.
     */
    private Instant createdAt;

    /**
     * The UTC date and time for when the session was last updated.
     */
    private Instant updatedAt;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy