me.tomsdevsn.hetznercloud.objects.general.Location Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hetznercloud-java_2.12 Show documentation
Show all versions of hetznercloud-java_2.12 Show documentation
Java Integration to manage the Hetzner-Cloud
The newest version!
package me.tomsdevsn.hetznercloud.objects.general;
import lombok.Data;
@Data
public class Location {
private Long id;
private String name;
private String description;
private String country;
private String city;
private Double latitude;
private Double longitude;
}