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

com.github.twitch4j.tmi.domain.Host Maven / Gradle / Ivy

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

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

@Data
@Setter(AccessLevel.PRIVATE)
@NoArgsConstructor
@Deprecated
public class Host {

    private String hostId;

    private String hostLogin;

    private String hostDisplayName;

    private String targetId;

    private String targetLogin;

    private String targetDisplayName;

    private Boolean hostPartnered;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy