com.mindee.parsing.custom.lineitems.PreparedLines 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.custom.lineitems;
import java.util.List;
import lombok.Getter;
/**
* An anchor and its initial lines.
*/
@Getter
public final class PreparedLines {
private final Anchor anchor;
private final List lines;
/**
* An anchor and its initial lines.
*/
public PreparedLines(Anchor anchor, List lines) {
this.anchor = anchor;
this.lines = lines;
}
}