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

org.kohsuke.github.GraphQLPageInfo Maven / Gradle / Ivy

package org.kohsuke.github;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Represents the result of a GraphQL pageInfo
 *
 * @param  the type parameter
 * @author Hiroyuki Wada
 */
public class GraphQLPageInfo {
    @JsonProperty("endCursor")
    public String endCursor;

    @JsonProperty("hasNextPage")
    public boolean hasNextPage;

    @JsonProperty("hasPreviousPage")
    public boolean hasPreviousPage;

    @JsonProperty("startCursor")
    public String startCursor;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy