Struct google_analytics3::api::WebPropertySummary
source · pub struct WebPropertySummary {
pub id: Option<String>,
pub internal_web_property_id: Option<String>,
pub kind: Option<String>,
pub level: Option<String>,
pub name: Option<String>,
pub profiles: Option<Vec<ProfileSummary>>,
pub starred: Option<bool>,
pub website_url: Option<String>,
}Expand description
JSON template for an Analytics WebPropertySummary. WebPropertySummary returns basic information (i.e., summary) for a web property.
This type is not used in any activity, and only used as part of another schema.
Fields§
§id: Option<String>Web property ID of the form UA-XXXXX-YY.
internal_web_property_id: Option<String>Internal ID for this web property.
kind: Option<String>Resource type for Analytics WebPropertySummary.
level: Option<String>Level for this web property. Possible values are STANDARD or PREMIUM.
name: Option<String>Web property name.
profiles: Option<Vec<ProfileSummary>>List of profiles under this web property.
starred: Option<bool>Indicates whether this web property is starred or not.
website_url: Option<String>Website url for this web property.
Trait Implementations§
source§impl Clone for WebPropertySummary
impl Clone for WebPropertySummary
source§fn clone(&self) -> WebPropertySummary
fn clone(&self) -> WebPropertySummary
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for WebPropertySummary
impl Debug for WebPropertySummary
source§impl Default for WebPropertySummary
impl Default for WebPropertySummary
source§fn default() -> WebPropertySummary
fn default() -> WebPropertySummary
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for WebPropertySummary
impl<'de> Deserialize<'de> for WebPropertySummary
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more