water.bindings.pojos.AssemblyV99 Maven / Gradle / Ivy
package water.bindings.pojos;
import com.google.gson.Gson;
public class AssemblyV99 extends RequestSchema {
/** A list of steps describing the assembly line. */
public String[] steps;
/** Input Frame for the assembly. */
public FrameKeyV3 frame;
/** The name of the file and generated class */
public String pojo_name;
/** The key of the Assembly object to retrieve from the DKV. */
public String assembly_id;
/** Output of the assembly line. */
public FrameKeyV3 result;
/** A Key to the fit Assembly data structure */
public AssemblyKeyV3 assembly;
/* INHERITED: Comma-separated list of JSON field paths to exclude from the result, used like: "/3/Frames?_exclude_fields=frames/frame_id/URL,__meta"
* public String _exclude_fields;
*/
/** Return the contents of this object as a JSON String. */
@Override
public String toString() {
return new Gson().toJson(this);
}
}