com.mindee.parsing.common.Extras Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mindee-api-java Show documentation
Show all versions of mindee-api-java Show documentation
Java Library to call Mindee's Off-The-Shelf and Custom APIs
package com.mindee.parsing.common;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
/**
* Optional information.
*/
@Getter
@EqualsAndHashCode
@JsonIgnoreProperties(ignoreUnknown = true)
public class Extras {
/**
* Cropping result.
*/
@JsonProperty("cropper")
private Cropper cropper;
/**
* Full Text OCR result.
*/
@Setter
@JsonProperty("full_text_ocr")
private FullTextOcr fullTextOcr;
}