com.github.revenuemonster.model.GeoLocation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of RevenueMonsterOpenAPI Show documentation
Show all versions of RevenueMonsterOpenAPI Show documentation
This is an Java SDK that maps some of the RESTful methods of Open API that are documented at doc.revenuemonster.my
The newest version!
package com.github.revenuemonster.model;
public class GeoLocation {
private float latitude;
private float longitude;
// Getter Methods
public float getLatitude() {
return latitude;
}
public float getLongitude() {
return longitude;
}
// Setter Methods
public void setLatitude(float latitude) {
this.latitude = latitude;
}
public void setLongitude(float longitude) {
this.longitude = longitude;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy