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