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

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

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy