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

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

    /*
     * The label property.
     */
    @JsonProperty(value = "label", required = true)
    private String label;

    /*
     * The score property.
     */
    @JsonProperty(value = "score")
    private Float score;

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

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

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

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

    /**
     * Get the score property: The score property.
     *
     * @return the score value.
     */
    public Float getScore() {
        return this.score;
    }

    /**
     * Set the score property: The score property.
     *
     * @param score the score value to set.
     * @return the EducationSearchScoreComponent object itself.
     */
    public EducationSearchScoreComponent setScore(Float score) {
        this.score = score;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy