1 2 3 4 5 6 7 8 9 10 11 12
//! Model struct for UpdateLocationRequest type
use serde::Serialize;
use super::Location;
/// This is a model struct for the UpdateLocationRequest type
#[derive(Clone, Debug, Default, PartialEq, Serialize)]
pub struct UpdateLocationRequest {
/// The [Location] object with only the fields to update.
pub location: Location,
}