use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct GetGmbLocations200Response {
#[serde(rename = "locations", skip_serializing_if = "Option::is_none")]
pub locations: Option<Vec<models::GetGmbLocations200ResponseLocationsInner>>,
#[serde(rename = "selectedLocationId", skip_serializing_if = "Option::is_none")]
pub selected_location_id: Option<String>,
#[serde(rename = "cached", skip_serializing_if = "Option::is_none")]
pub cached: Option<bool>,
}
impl GetGmbLocations200Response {
pub fn new() -> GetGmbLocations200Response {
GetGmbLocations200Response {
locations: None,
selected_location_id: None,
cached: None,
}
}
}