org.kohsuke.github.SCIMSearchResult Maven / Gradle / Ivy
package org.kohsuke.github;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Represents the result of a SCIM search
*
* @param the type parameter
* @author Hiroyuki Wada
*/
public class SCIMSearchResult {
@JsonProperty("totalResults")
public int totalResults;
@JsonProperty("itemsPerPage")
public int itemsPerPage;
@JsonProperty("startIndex")
public int startIndex;
@JsonProperty("Resources")
public T[] Resources;
}