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

com.wirefreethought.geodb.client.request.FindPlacesNearLocationRequest Maven / Gradle / Ivy

package com.wirefreethought.geodb.client.request;

import java.util.Set;

import com.wirefreethought.geodb.client.model.GeoDbLocationConstraint;
import com.wirefreethought.geodb.client.model.GeoDbSort;
import com.wirefreethought.geodb.client.model.IncludeDeletedMode;

import lombok.Builder;
import lombok.Getter;

@Builder
@Getter
public class FindPlacesNearLocationRequest
{
    private Boolean asciiMode;
    private Set countryIds;
    private Set excludedCountryIds;
    private IncludeDeletedMode includeDeleted;
    private String languageCode;
    private Integer limit;
    private Integer minPopulation;
    private Integer maxPopulation;
    private String namePrefix;
    private GeoDbLocationConstraint nearLocation;
    private Integer offset;
    private GeoDbSort sort;
    private Set timeZoneIds;
    private Set types;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy