water.bindings.pojos.StepDefinitionV99 Maven / Gradle / Ivy
/*
* This file is auto-generated by h2o-3/h2o-bindings/bin/gen_java.py
* Copyright 2016 H2O.ai; Apache License Version 2.0 (see LICENSE for details)
*/
package water.bindings.pojos;
import com.google.gson.Gson;
import com.google.gson.annotations.*;
public class StepDefinitionV99 {
/**
* Name of the step provider (usually, this is also the name of an algorithm).
*/
public String name;
/**
* An alias representing a predefined list of steps to be executed.
*/
public H2oautomlStepDefinitionAlias alias;
/**
* The list of steps to be executed (Mutually exclusive with alias).
*/
public StepV99[] steps;
/**
* Public constructor
*/
public StepDefinitionV99() {
name = "";
}
/**
* Return the contents of this object as a JSON String.
*/
@Override
public String toString() {
return new Gson().toJson(this);
}
}