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

com.affinda.api.client.models.DocumentMetaParentDocument 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;

/**
 * If this document is part of a splitted document, this attribute points to the original document that this document is
 * splitted from.
 */
@Fluent
public final class DocumentMetaParentDocument {
    /*
     * Unique identifier for the document
     */
    @JsonProperty(value = "identifier")
    private String identifier;

    /**
     * Get the identifier property: Unique identifier for the document.
     *
     * @return the identifier value.
     */
    public String getIdentifier() {
        return this.identifier;
    }

    /**
     * Set the identifier property: Unique identifier for the document.
     *
     * @param identifier the identifier value to set.
     * @return the DocumentMetaParentDocument object itself.
     */
    public DocumentMetaParentDocument setIdentifier(String identifier) {
        this.identifier = identifier;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy