ch.viascom.hipchat.api.models.message.MessageFile 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;
import lombok.Data;
import java.io.Serializable;
/**
* Created by patrickboesch on 21.04.16.
*/
@Data
public class MessageFile implements Serializable {
private String url;
private String thumb_url;
private String name;
private int size;
}