//! A batch prediction of missing values from a data set.
usesuper::Resource;usesuper::id::*;usesuper::status::*;resource!{
api_name "batchprediction";/// A batch prediction generated by BigML.
////// TODO: Still lots of missing fields.
#[derive(Debug, Deserialize)]pubstructBatchPrediction{/// The status of this source.
pubstatus: GenericStatus,
/// Does this prediction include all the fields in the input?
puball_fields:bool,
// Our output dataset.
//pub output_dataset_resource: Option<Id<Dataset>>,
/// Is our output dataset currently available?
puboutput_dataset_status:bool,
}}