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

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

package org.kohsuke.github;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Represents the result of a GraphQL edge.
 *
 * @param  the type parameter
 * @author Hiroyuki Wada
 */
public class GraphQLEdge {

    @JsonProperty("cursor")
    public String cursor;

    @JsonProperty("node")
    public T node;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy