Class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsResponse
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/analyticsadmin_v1alpha/classes.rb,
lib/google/apis/analyticsadmin_v1alpha/representations.rb,
lib/google/apis/analyticsadmin_v1alpha/representations.rb
Overview
Response message for SearchAccounts RPC.
Instance Attribute Summary collapse
-
#change_history_events ⇒ Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChangeHistoryEvent>
Results that were accessible to the caller.
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsResponse
constructor
A new instance of GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsResponse
Returns a new instance of GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsResponse.
4915 4916 4917 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 4915 def initialize(**args) update!(**args) end |
Instance Attribute Details
#change_history_events ⇒ Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChangeHistoryEvent>
Results that were accessible to the caller.
Corresponds to the JSON property changeHistoryEvents
4907 4908 4909 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 4907 def change_history_events @change_history_events end |
#next_page_token ⇒ String
A token, which can be sent as page_token to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
4913 4914 4915 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 4913 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4920 4921 4922 4923 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 4920 def update!(**args) @change_history_events = args[:change_history_events] if args.key?(:change_history_events) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |