com.github.twitch4j.tmi.domain.TMIError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twitch4j-messaginginterface Show documentation
Show all versions of twitch4j-messaginginterface Show documentation
Twitch Message Interface API dependency
The newest version!
package com.github.twitch4j.tmi.domain;
import lombok.AccessLevel;
import lombok.Data;
import lombok.Getter;
import lombok.Setter;
@Data
@Setter(AccessLevel.PRIVATE)
@Getter
public class TMIError {
/**
* Error Type
*/
private String error;
/**
* Error Code
*/
private String status;
/**
* Error Message
*/
private String message;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy