class Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChangeHistoryEvent

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.

Attributes

actor_type[RW]

The type of actor that made this change. Corresponds to the JSON property `actorType` @return [String]

change_time[RW]

Time when change was made. Corresponds to the JSON property `changeTime` @return [String]

changes[RW]

A list of changes made in this change history event that fit the filters specified in SearchChangeHistoryEventsRequest. Corresponds to the JSON property `changes` @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChangeHistoryChange>]

changes_filtered[RW]

If true, then the list of changes returned was filtered, and does not represent all changes that occurred in this event. Corresponds to the JSON property `changesFiltered` @return [Boolean]

changes_filtered?[RW]

If true, then the list of changes returned was filtered, and does not represent all changes that occurred in this event. Corresponds to the JSON property `changesFiltered` @return [Boolean]

id[RW]

ID of this change history event. This ID is unique across Google Analytics. Corresponds to the JSON property `id` @return [String]

user_actor_email[RW]

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. Corresponds to the JSON property `userActorEmail` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/analyticsadmin_v1alpha/classes.rb, line 653
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/analyticsadmin_v1alpha/classes.rb, line 658
def update!(**args)
  @actor_type = args[:actor_type] if args.key?(:actor_type)
  @change_time = args[:change_time] if args.key?(:change_time)
  @changes = args[:changes] if args.key?(:changes)
  @changes_filtered = args[:changes_filtered] if args.key?(:changes_filtered)
  @id = args[:id] if args.key?(:id)
  @user_actor_email = args[:user_actor_email] if args.key?(:user_actor_email)
end