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

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

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

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

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

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

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

    /**
     * Get the coordinates property: The coordinates property.
     *
     * @return the coordinates value.
     */
    public ResumeSearchParametersLocationCoordinates getCoordinates() {
        return this.coordinates;
    }

    /**
     * Set the coordinates property: The coordinates property.
     *
     * @param coordinates the coordinates value to set.
     * @return the ResumeSearchParametersLocation object itself.
     */
    public ResumeSearchParametersLocation setCoordinates(ResumeSearchParametersLocationCoordinates coordinates) {
        this.coordinates = coordinates;
        return this;
    }

    /**
     * Get the distance property: The distance property.
     *
     * @return the distance value.
     */
    public Integer getDistance() {
        return this.distance;
    }

    /**
     * Set the distance property: The distance property.
     *
     * @param distance the distance value to set.
     * @return the ResumeSearchParametersLocation object itself.
     */
    public ResumeSearchParametersLocation setDistance(Integer distance) {
        this.distance = distance;
        return this;
    }

    /**
     * Get the unit property: The unit property.
     *
     * @return the unit value.
     */
    public SearchLocationUnit getUnit() {
        return this.unit;
    }

    /**
     * Set the unit property: The unit property.
     *
     * @param unit the unit value to set.
     * @return the ResumeSearchParametersLocation object itself.
     */
    public ResumeSearchParametersLocation setUnit(SearchLocationUnit unit) {
        this.unit = unit;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy