Class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListAccountSummariesResponse
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListAccountSummariesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/analyticsadmin_v1alpha/classes.rb,
generated/google/apis/analyticsadmin_v1alpha/representations.rb,
generated/google/apis/analyticsadmin_v1alpha/representations.rb
Overview
Response message for ListAccountSummaries RPC.
Instance Attribute Summary collapse
-
#account_summaries ⇒ Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAccountSummary>
Account summaries of all accounts the caller has access to.
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaListAccountSummariesResponse
constructor
A new instance of GoogleAnalyticsAdminV1alphaListAccountSummariesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaListAccountSummariesResponse
Returns a new instance of GoogleAnalyticsAdminV1alphaListAccountSummariesResponse.
866 867 868 |
# File 'generated/google/apis/analyticsadmin_v1alpha/classes.rb', line 866 def initialize(**args) update!(**args) end |
Instance Attribute Details
#account_summaries ⇒ Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAccountSummary>
Account summaries of all accounts the caller has access to.
Corresponds to the JSON property accountSummaries
858 859 860 |
# File 'generated/google/apis/analyticsadmin_v1alpha/classes.rb', line 858 def account_summaries @account_summaries 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
864 865 866 |
# File 'generated/google/apis/analyticsadmin_v1alpha/classes.rb', line 864 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
871 872 873 874 |
# File 'generated/google/apis/analyticsadmin_v1alpha/classes.rb', line 871 def update!(**args) @account_summaries = args[:account_summaries] if args.key?(:account_summaries) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |