//! A data source used by BigML.
usesuper::Resource;usesuper::id::*;usesuper::status::*;resource!{
api_name "source";/// A data source used by BigML.
////// TODO: Still lots of missing fields.
#[derive(Debug, Deserialize)]pubstructSource{/// The status of this source.
pubstatus: GenericStatus,
/// The name of the file uploaded.
pubfile_name: String,
/// An MD5 hash of the uploaded file.
pubmd5: String,
/// The number of bytes of the source.
pubsize:u64,
}}