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 duplicate 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
Source§impl Serialize for WebPropertySummary
impl Serialize for WebPropertySummary
impl Part for WebPropertySummary
Auto Trait Implementations§
impl Freeze for WebPropertySummary
impl RefUnwindSafe for WebPropertySummary
impl Send for WebPropertySummary
impl Sync for WebPropertySummary
impl Unpin for WebPropertySummary
impl UnwindSafe for WebPropertySummary
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more