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

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

/** The PathsFte27NV3IndexNameDocumentsPostResponses201ContentApplicationJsonSchema model. */
@Fluent
public final class PathsFte27NV3IndexNameDocumentsPostResponses201ContentApplicationJsonSchema {
    /*
     * Unique identifier for the document.
     */
    @JsonProperty(value = "document")
    private String document;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy