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

com.affinda.api.client.models.ResumeRedactData 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 ResumeRedactData model. */
@Fluent
public final class ResumeRedactData {
    /*
     * URL to download the redacted resume.
     */
    @JsonProperty(value = "redactedPdf")
    private String redactedPdf;

    /**
     * Get the redactedPdf property: URL to download the redacted resume.
     *
     * @return the redactedPdf value.
     */
    public String getRedactedPdf() {
        return this.redactedPdf;
    }

    /**
     * Set the redactedPdf property: URL to download the redacted resume.
     *
     * @param redactedPdf the redactedPdf value to set.
     * @return the ResumeRedactData object itself.
     */
    public ResumeRedactData setRedactedPdf(String redactedPdf) {
        this.redactedPdf = redactedPdf;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy