com.quali.cloudshell.api.SandboxDetailsResponse 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;
public class SandboxDetailsResponse
{
public final String state;
public final String name;
public final String id;
public SandboxDetailsResponse(String state, String name, String id){
this.state = state;
this.name = name;
this.id = id;
}
}