/// Space.
#[derive(Debug)]pubstructSpace{/// The space key
pubkey: String,
/// The name of the space
pubname: String,
/// Space group
pubspace_group:Option<String>,
/// Space type
pubspace_type: String,
/// The url to view this space online
puburl: String,
/// The id of the space homepage
pubhome_page:i64,
/// The HTML rendered space description
pubdescription:Option<String>,
}