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

com.affinda.api.client.models.ResumeSearchDetailEducationValueItem Maven / Gradle / Ivy

package com.affinda.api.client.models;

import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;

/** The ResumeSearchDetailEducationValueItem model. */
@Fluent
public final class ResumeSearchDetailEducationValueItem extends Education {
    /*
     * The match property.
     */
    @JsonProperty(value = "match")
    private Boolean match;

    /**
     * Get the match property: The match property.
     *
     * @return the match value.
     */
    public Boolean isMatch() {
        return this.match;
    }

    /**
     * Set the match property: The match property.
     *
     * @param match the match value to set.
     * @return the ResumeSearchDetailEducationValueItem object itself.
     */
    public ResumeSearchDetailEducationValueItem setMatch(Boolean match) {
        this.match = match;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy