//! 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,
}