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

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

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

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

    /**
     * Set the missing property: The missing property.
     *
     * @param missing the missing value to set.
     * @return the ResumeSearchDetailLanguages object itself.
     */
    public ResumeSearchDetailLanguages setMissing(List 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 ResumeSearchDetailLanguages object itself.
     */
    public ResumeSearchDetailLanguages setValue(List value) {
        this.value = value;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy