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

com.github.twitch4j.kraken.domain.KrakenIngest Maven / Gradle / Ivy

There is a newer version: 1.22.0
Show newest version
package com.github.twitch4j.kraken.domain;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;

/**
 * Model representing a twitch ingest server.
 * 

* The Twitch ingesting system is the first stop for a broadcast stream. * An ingest server receives your stream, and the ingesting system * authorizes and registers streams, then prepares them for viewers. * @deprecated Kraken is deprecated and has been shut down on Febuary 28, 2022. * More details about the deprecation are available here. */ @Data @Deprecated public class KrakenIngest { @JsonProperty("_id") private Long id; private String name; private Integer availability; @JsonProperty("default") private Boolean isDefault; private String urlTemplate; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy