Skip to content

Instantly share code, notes, and snippets.

@seit
Created December 10, 2020 10:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seit/6c9540740969b9ed45b45afd9bc95de8 to your computer and use it in GitHub Desktop.
Save seit/6c9540740969b9ed45b45afd9bc95de8 to your computer and use it in GitHub Desktop.
QueryJson
@JsonIgnoreProperties(ignoreUnknown = true)
public class QueryJson {
@JsonProperty("query")
String query;
public QueryJson(String query) {
this.query = query;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment