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

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

/** Years of experience range. */
@Fluent
public final class YearsExperienceAnnotationUpdateParsed {
    /*
     * Minimum years of experience
     */
    @JsonProperty(value = "minimum")
    private Float minimum;

    /*
     * Maximum years of experience
     */
    @JsonProperty(value = "maximum")
    private Float maximum;

    /**
     * Get the minimum property: Minimum years of experience.
     *
     * @return the minimum value.
     */
    public Float getMinimum() {
        return this.minimum;
    }

    /**
     * Set the minimum property: Minimum years of experience.
     *
     * @param minimum the minimum value to set.
     * @return the YearsExperienceAnnotationUpdateParsed object itself.
     */
    public YearsExperienceAnnotationUpdateParsed setMinimum(Float minimum) {
        this.minimum = minimum;
        return this;
    }

    /**
     * Get the maximum property: Maximum years of experience.
     *
     * @return the maximum value.
     */
    public Float getMaximum() {
        return this.maximum;
    }

    /**
     * Set the maximum property: Maximum years of experience.
     *
     * @param maximum the maximum value to set.
     * @return the YearsExperienceAnnotationUpdateParsed object itself.
     */
    public YearsExperienceAnnotationUpdateParsed setMaximum(Float maximum) {
        this.maximum = maximum;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy