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.
5505 5506 5507 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5505 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
5497 5498 5499 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5497 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
5503 5504 5505 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5503 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5510 5511 5512 5513 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5510 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 |