use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct GetGmbLocations200ResponseLocationsInner {
#[serde(rename = "id", skip_serializing_if = "Option::is_none")]
pub id: Option<String>,
#[serde(rename = "name", skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
#[serde(rename = "accountId", skip_serializing_if = "Option::is_none")]
pub account_id: Option<String>,
#[serde(rename = "accountName", skip_serializing_if = "Option::is_none")]
pub account_name: Option<String>,
#[serde(rename = "address", skip_serializing_if = "Option::is_none")]
pub address: Option<String>,
#[serde(rename = "category", skip_serializing_if = "Option::is_none")]
pub category: Option<String>,
#[serde(rename = "websiteUrl", skip_serializing_if = "Option::is_none")]
pub website_url: Option<String>,
}
impl GetGmbLocations200ResponseLocationsInner {
pub fn new() -> GetGmbLocations200ResponseLocationsInner {
GetGmbLocations200ResponseLocationsInner {
id: None,
name: None,
account_id: None,
account_name: None,
address: None,
category: None,
website_url: None,
}
}
}