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

com.affinda.api.client.models.JobTitleParsed 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.Immutable;
import com.fasterxml.jackson.annotation.JsonProperty;

/** The JobTitleParsed model. */
@Immutable
public class JobTitleParsed {
    /*
     * Matching job title to extracted text
     */
    @JsonProperty(value = "parsed", access = JsonProperty.Access.WRITE_ONLY)
    private JobTitleParsedParsed parsed;

    /**
     * Get the parsed property: Matching job title to extracted text.
     *
     * @return the parsed value.
     */
    public JobTitleParsedParsed getParsed() {
        return this.parsed;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy