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

com.affinda.api.client.models.JobTitleAnnotation 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 JobTitleAnnotation model. */
@Fluent
public final class JobTitleAnnotation extends Annotation {
    /*
     * Years of experience range
     */
    @JsonProperty(value = "parsed")
    private JobTitleAnnotationParsed parsed;

    /**
     * Get the parsed property: Years of experience range.
     *
     * @return the parsed value.
     */
    public JobTitleAnnotationParsed getParsed() {
        return this.parsed;
    }

    /**
     * Set the parsed property: Years of experience range.
     *
     * @param parsed the parsed value to set.
     * @return the JobTitleAnnotation object itself.
     */
    public JobTitleAnnotation setParsed(JobTitleAnnotationParsed parsed) {
        this.parsed = parsed;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy