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

com.affinda.api.client.models.ResumeSearchDetailEducation 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;
import java.util.List;

/** The ResumeSearchDetailEducation model. */
@Fluent
public final class ResumeSearchDetailEducation {
    /*
     * The missing property.
     */
    @JsonProperty(value = "missing")
    private ResumeSearchDetailEducationMissing missing;

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

    /**
     * Get the missing property: The missing property.
     *
     * @return the missing value.
     */
    public ResumeSearchDetailEducationMissing getMissing() {
        return this.missing;
    }

    /**
     * Set the missing property: The missing property.
     *
     * @param missing the missing value to set.
     * @return the ResumeSearchDetailEducation object itself.
     */
    public ResumeSearchDetailEducation setMissing(ResumeSearchDetailEducationMissing missing) {
        this.missing = missing;
        return this;
    }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy