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

com.affinda.api.client.models.DocumentError 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 DocumentError model. */
@Fluent
public final class DocumentError {
    /*
     * The errorCode property.
     */
    @JsonProperty(value = "errorCode")
    private String errorCode;

    /*
     * The errorDetail property.
     */
    @JsonProperty(value = "errorDetail")
    private String errorDetail;

    /**
     * Get the errorCode property: The errorCode property.
     *
     * @return the errorCode value.
     */
    public String getErrorCode() {
        return this.errorCode;
    }

    /**
     * Set the errorCode property: The errorCode property.
     *
     * @param errorCode the errorCode value to set.
     * @return the DocumentError object itself.
     */
    public DocumentError setErrorCode(String errorCode) {
        this.errorCode = errorCode;
        return this;
    }

    /**
     * Get the errorDetail property: The errorDetail property.
     *
     * @return the errorDetail value.
     */
    public String getErrorDetail() {
        return this.errorDetail;
    }

    /**
     * Set the errorDetail property: The errorDetail property.
     *
     * @param errorDetail the errorDetail value to set.
     * @return the DocumentError object itself.
     */
    public DocumentError setErrorDetail(String errorDetail) {
        this.errorDetail = errorDetail;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy