me.tomsdevsn.hetznercloud.objects.response.ResponseFloatingIPs 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.response;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import me.tomsdevsn.hetznercloud.objects.general.FloatingIP;
import java.util.List;
@Data
public class ResponseFloatingIPs {
@JsonProperty("floating_ips")
private List floatingIPs;
}