All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy