//! Model struct for ListLocationsResponse type
use serde::Deserialize;
use super::{Location, errors::Error};
/// This is a model struct for ListLocationsResponse type
#[derive(Clone, Debug, Deserialize, PartialEq)]
pub struct ListLocationsResponse {
/// Any errors that occurred during the request.
pub errors: Option<Vec<Error>>,
/// The business locations.
pub locations: Option<Vec<Location>>,
}