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

reliza.java.client.responses.GraphQLResponse Maven / Gradle / Ivy

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