ch.viascom.hipchat.api.models.message.links.TwitterUserMessageLink Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hipchat-api Show documentation
Show all versions of hipchat-api Show documentation
A HipChat v2 API full implementation for Java
package ch.viascom.hipchat.api.models.message.links;
import lombok.Data;
/**
* Created by patrickboesch on 21.04.16.
*/
@Data
public class TwitterUserMessageLink implements MessageLinkContent {
private int followers;
private String name;
private String profileImageUrl;
private String screenName;
}