useserde::Deserialize;#[derive(Deserialize)]/// Information about a location referenced by a region.
pubstructLocationRef{/// The ID of the location.
pubid: String,
/// The name of the location.
pubname: String,
/// The state of the location within the country (only if applicable).
pubstate:Option<String>,
}