All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.affinda.api.client.models.DocumentSplit Maven / Gradle / Ivy

Go to download

This package contains Java Client Library for the Affinda Resume Parser API. For documentation on how to use this package, please see https://github.com/affinda/affinda-java

There is a newer version: 3.16.0
Show newest version
package com.affinda.api.client.models;

import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;

/** Describe a split of a document. */
@Fluent
public final class DocumentSplit {
    /*
     * Any object
     */
    @JsonProperty(value = "identifier")
    private Object identifier;

    /*
     * The pages property.
     */
    @JsonProperty(value = "pages", required = true)
    private List pages;

    /**
     * Get the identifier property: Any object.
     *
     * @return the identifier value.
     */
    public Object getIdentifier() {
        return this.identifier;
    }

    /**
     * Set the identifier property: Any object.
     *
     * @param identifier the identifier value to set.
     * @return the DocumentSplit object itself.
     */
    public DocumentSplit setIdentifier(Object identifier) {
        this.identifier = identifier;
        return this;
    }

    /**
     * Get the pages property: The pages property.
     *
     * @return the pages value.
     */
    public List getPages() {
        return this.pages;
    }

    /**
     * Set the pages property: The pages property.
     *
     * @param pages the pages value to set.
     * @return the DocumentSplit object itself.
     */
    public DocumentSplit setPages(List pages) {
        this.pages = pages;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy