com.mindee.parsing.common.Product 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 lombok.Getter;
/**
* The product on which the document was parsed.
*/
@Getter
@JsonIgnoreProperties(ignoreUnknown = true)
public class Product {
/**
* Name of the product used.
*/
@JsonProperty("name")
private String name;
/**
* Version of the product used.
*/
@JsonProperty("version")
private String version;
}