All Downloads are FREE. Search and download functionalities are using the official Maven repository.

water.bindings.pojos.AssemblyV99 Maven / Gradle / Ivy

There is a newer version: 3.8.2.11
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy