ch.viascom.hipchat.api.request.models.GetAllUsers 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.request.models;
import com.google.gson.annotations.SerializedName;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.io.Serializable;
/**
* Created by patrickboesch on 18.04.16.
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
public class GetAllUsers implements Serializable {
@SerializedName("start-index")
private int start_index = 0;
@SerializedName("max-results")
private int max_results = 100;
@SerializedName("include-guests")
boolean include_guests = false;
@SerializedName("include-deleted")
boolean include_deleted = false;
}