com.mindee.pdf.SplitQuery 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.pdf;
import com.mindee.input.PageOptions;
import lombok.Value;
/**
* Represent parameter to split a PDF.
*/
@Value
public class SplitQuery {
/**
* The file.
*/
byte[] file;
/**
* Represent options to cut a document.
*/
PageOptions pageOptions;
}