com.mindee.parsing.common.Cropper 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
The newest version!
package com.mindee.parsing.common;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.mindee.parsing.standard.PositionField;
import java.util.List;
import lombok.EqualsAndHashCode;
import lombok.Getter;
/**
* Cropping result.
*/
@Getter
@EqualsAndHashCode
@JsonIgnoreProperties(ignoreUnknown = true)
public class Cropper {
/**
* List of positions within the image.
*/
@JsonProperty("cropping")
private List cropping;
}