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_token
to 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.
5395 5396 5397 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5395 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
5387 5388 5389 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5387 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
5393 5394 5395 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5393 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5400 5401 5402 5403 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5400 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 |