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

com.github.twitch4j.kraken.domain.KrakenSubscription 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;

import java.time.Instant;

/**
 * @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 KrakenSubscription {

	@JsonProperty("_id")
	private String id;

	private Instant createdAt;

	private KrakenUser user;

	@JsonProperty("sub_plan")
	private String subscriptionPlan;

	@JsonProperty("sub_plan_name")
	private String subscriptionName;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy