class Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest
Request message for SearchChangeHistoryEvents RPC.
Attributes
Optional. If set, only return changes that match one or more of these types of actions. Corresponds to the JSON property `action` @return [Array<String>]
Optional. If set, only return changes if they are made by a user in this list. Corresponds to the JSON property `actorEmail` @return [Array<String>]
Optional. If set, only return changes made after this time (inclusive). Corresponds to the JSON property `earliestChangeTime` @return [String]
Optional. If set, only return changes made before this time (inclusive). Corresponds to the JSON property `latestChangeTime` @return [String]
Optional. The maximum number of ChangeHistoryEvent items to return. The service may return fewer than this value, even if there are additional pages. If unspecified, at most 50 items will be returned. The maximum value is 200 ( higher values will be coerced to the maximum). Corresponds to the JSON property `pageSize` @return [Fixnum]
Optional. A page token, received from a previous `SearchChangeHistoryEvents` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `SearchChangeHistoryEvents` must match the call that provided the page token. Corresponds to the JSON property `pageToken` @return [String]
Optional. Resource name for a child property. If set, only return changes made to this property or its child resources. Corresponds to the JSON property `property` @return [String]
Optional. If set, only return changes if they are for a resource that matches at least one of these types. Corresponds to the JSON property `resourceType` @return [Array<String>]
Public Class Methods
# File lib/google/apis/analyticsadmin_v1alpha/classes.rb, line 2121 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/analyticsadmin_v1alpha/classes.rb, line 2126 def update!(**args) @action = args[:action] if args.key?(:action) @actor_email = args[:actor_email] if args.key?(:actor_email) @earliest_change_time = args[:earliest_change_time] if args.key?(:earliest_change_time) @latest_change_time = args[:latest_change_time] if args.key?(:latest_change_time) @page_size = args[:page_size] if args.key?(:page_size) @page_token = args[:page_token] if args.key?(:page_token) @property = args[:property] if args.key?(:property) @resource_type = args[:resource_type] if args.key?(:resource_type) end