com.quali.cloudshell.api.Service Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sandbox-api Show documentation
Show all versions of sandbox-api Show documentation
CloudShell Sandbox java gateway project
The newest version!
package com.quali.cloudshell.api;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.io.Serializable;
import java.util.List;
public class Service implements Serializable
{
@JsonProperty("name")
public String name;
@JsonProperty("addresses")
public List addresses;
@JsonProperty("status")
public String status;
}