com.backendless.geo.SearchMatchesResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android Show documentation
Show all versions of android Show documentation
Android SDK used by developers to provide Backendless API in apps.
package com.backendless.geo;
public class SearchMatchesResult
{
private Double matches;
private GeoPoint geoPoint;
public SearchMatchesResult()
{
}
public Double getMatches()
{
return matches;
}
public void setMatches( Double matches )
{
this.matches = matches;
}
public GeoPoint getGeoPoint()
{
return geoPoint;
}
public void setGeoPoint( GeoPoint geoPoint )
{
this.geoPoint = geoPoint;
}
}