pub struct GoogleAnalyticsAdminV1alphaChangeHistoryEvent {
pub actor_type: Option<String>,
pub change_time: Option<DateTime<Utc>>,
pub changes: Option<Vec<GoogleAnalyticsAdminV1alphaChangeHistoryChange>>,
pub changes_filtered: Option<bool>,
pub id: Option<String>,
pub user_actor_email: Option<String>,
}Expand description
A set of changes within a Google Analytics account or its child properties that resulted from the same cause. Common causes would be updates made in the Google Analytics UI, changes from customer support, or automatic Google Analytics system changes.
This type is not used in any activity, and only used as part of another schema.
Fields§
§actor_type: Option<String>The type of actor that made this change.
change_time: Option<DateTime<Utc>>Time when change was made.
changes: Option<Vec<GoogleAnalyticsAdminV1alphaChangeHistoryChange>>A list of changes made in this change history event that fit the filters specified in SearchChangeHistoryEventsRequest.
changes_filtered: Option<bool>If true, then the list of changes returned was filtered, and does not represent all changes that occurred in this event.
id: Option<String>ID of this change history event. This ID is unique across Google Analytics.
user_actor_email: Option<String>Email address of the Google account that made the change. This will be a valid email address if the actor field is set to USER, and empty otherwise. Google accounts that have been deleted will cause an error.
Trait Implementations§
Source§impl Clone for GoogleAnalyticsAdminV1alphaChangeHistoryEvent
impl Clone for GoogleAnalyticsAdminV1alphaChangeHistoryEvent
Source§fn clone(&self) -> GoogleAnalyticsAdminV1alphaChangeHistoryEvent
fn clone(&self) -> GoogleAnalyticsAdminV1alphaChangeHistoryEvent
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GoogleAnalyticsAdminV1alphaChangeHistoryEvent
impl Default for GoogleAnalyticsAdminV1alphaChangeHistoryEvent
Source§fn default() -> GoogleAnalyticsAdminV1alphaChangeHistoryEvent
fn default() -> GoogleAnalyticsAdminV1alphaChangeHistoryEvent
Source§impl<'de> Deserialize<'de> for GoogleAnalyticsAdminV1alphaChangeHistoryEvent
impl<'de> Deserialize<'de> for GoogleAnalyticsAdminV1alphaChangeHistoryEvent
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>,
impl Part for GoogleAnalyticsAdminV1alphaChangeHistoryEvent
Auto Trait Implementations§
impl Freeze for GoogleAnalyticsAdminV1alphaChangeHistoryEvent
impl RefUnwindSafe for GoogleAnalyticsAdminV1alphaChangeHistoryEvent
impl Send for GoogleAnalyticsAdminV1alphaChangeHistoryEvent
impl Sync for GoogleAnalyticsAdminV1alphaChangeHistoryEvent
impl Unpin for GoogleAnalyticsAdminV1alphaChangeHistoryEvent
impl UnwindSafe for GoogleAnalyticsAdminV1alphaChangeHistoryEvent
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
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>
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>
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