Class: Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaChangeHistoryEvent
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaChangeHistoryEvent
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/analyticsadmin_v1beta/classes.rb,
lib/google/apis/analyticsadmin_v1beta/representations.rb,
lib/google/apis/analyticsadmin_v1beta/representations.rb
Overview
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.
Instance Attribute Summary collapse
-
#actor_type ⇒ String
The type of actor that made this change.
-
#change_time ⇒ String
Time when change was made.
-
#changes ⇒ Array<Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaChangeHistoryChange>
A list of changes made in this change history event that fit the filters specified in SearchChangeHistoryEventsRequest.
-
#changes_filtered ⇒ Boolean
(also: #changes_filtered?)
If true, then the list of changes returned was filtered, and does not represent all changes that occurred in this event.
-
#id ⇒ String
ID of this change history event.
-
#user_actor_email ⇒ String
Email address of the Google account that made the change.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAnalyticsAdminV1betaChangeHistoryEvent
constructor
A new instance of GoogleAnalyticsAdminV1betaChangeHistoryEvent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAnalyticsAdminV1betaChangeHistoryEvent
Returns a new instance of GoogleAnalyticsAdminV1betaChangeHistoryEvent.
323 324 325 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 323 def initialize(**args) update!(**args) end |
Instance Attribute Details
#actor_type ⇒ String
The type of actor that made this change.
Corresponds to the JSON property actorType
291 292 293 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 291 def actor_type @actor_type end |
#change_time ⇒ String
Time when change was made.
Corresponds to the JSON property changeTime
296 297 298 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 296 def change_time @change_time end |
#changes ⇒ Array<Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaChangeHistoryChange>
A list of changes made in this change history event that fit the filters
specified in SearchChangeHistoryEventsRequest.
Corresponds to the JSON property changes
302 303 304 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 302 def changes @changes end |
#changes_filtered ⇒ Boolean Also known as: changes_filtered?
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
308 309 310 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 308 def changes_filtered @changes_filtered end |
#id ⇒ String
ID of this change history event. This ID is unique across Google Analytics.
Corresponds to the JSON property id
314 315 316 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 314 def id @id end |
#user_actor_email ⇒ 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.
Corresponds to the JSON property userActorEmail
321 322 323 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 321 def user_actor_email @user_actor_email end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
328 329 330 331 332 333 334 335 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 328 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 |