pub struct AnalyticsProperty {
pub analytics_account_id: Option<String>,
pub display_name: Option<String>,
pub id: Option<String>,
}Expand description
Details of a Google Analytics property
This type is not used in any activity, and only used as part of another schema.
Fields§
§analytics_account_id: Option<String>Output only. The ID of the Google Analytics account for the Google Analytics property associated with the specified FirebaseProject.
display_name: Option<String>The display name of the Google Analytics property associated with the specified FirebaseProject.
id: Option<String>The globally unique, Google-assigned identifier of the Google Analytics property associated with the specified FirebaseProject. If you called AddGoogleAnalytics to link the FirebaseProject with a Google Analytics account, the value in this id field is the same as the ID of the property either specified or provisioned with that call to AddGoogleAnalytics.
Trait Implementations§
Source§impl Clone for AnalyticsProperty
impl Clone for AnalyticsProperty
Source§fn clone(&self) -> AnalyticsProperty
fn clone(&self) -> AnalyticsProperty
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 AnalyticsProperty
impl Debug for AnalyticsProperty
Source§impl Default for AnalyticsProperty
impl Default for AnalyticsProperty
Source§fn default() -> AnalyticsProperty
fn default() -> AnalyticsProperty
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AnalyticsProperty
impl<'de> Deserialize<'de> for AnalyticsProperty
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 AnalyticsProperty
impl Serialize for AnalyticsProperty
impl Part for AnalyticsProperty
Auto Trait Implementations§
impl Freeze for AnalyticsProperty
impl RefUnwindSafe for AnalyticsProperty
impl Send for AnalyticsProperty
impl Sync for AnalyticsProperty
impl Unpin for AnalyticsProperty
impl UnwindSafe for AnalyticsProperty
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