ch.viascom.hipchat.api.response.ViewPrivatechatHistoryResponse 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.response;
import ch.viascom.hipchat.api.models.Message;
import lombok.Data;
import java.io.Serializable;
import java.util.ArrayList;
/**
* Created by Nikola Stankovic on 5/6/16.
*/
@Data
public class ViewPrivatechatHistoryResponse implements Serializable {
private ArrayList items;
private int startIndex;
private int maxResults;
}