water.bindings.pojos.DataInfoFrameV3 Maven / Gradle / Ivy
package water.bindings.pojos;
import com.google.gson.Gson;
public class DataInfoFrameV3 extends Schema {
/** input frame */
public FrameKeyV3 frame;
/** interactions */
public String[] interactions;
/** use all factor levels */
public boolean use_all;
/** standardize */
public boolean standardize;
/** interactions only returned */
public boolean interactions_only;
/** output frame */
public FrameKeyV3 result;
/** Return the contents of this object as a JSON String. */
@Override
public String toString() {
return new Gson().toJson(this);
}
}