reliza.java.client.responses.GraphQLResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of reliza-java-client Show documentation
Show all versions of reliza-java-client Show documentation
Java Client SDK for Reliza Hub
The newest version!
package reliza.java.client.responses;
import java.util.List;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.Data;
/**
* Response format of graphql api call
*/
@Data
public class GraphQLResponse {
private Map data;
private List errors;
@Data @JsonIgnoreProperties(ignoreUnknown = true)
public static class Error {
private String message;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy