class Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListAccountSummariesResponse

Response message for ListAccountSummaries RPC.

Attributes

account_summaries[RW]

Account summaries of all accounts the caller has access to. Corresponds to the JSON property `accountSummaries` @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAccountSummary>]

next_page_token[RW]

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` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/analyticsadmin_v1alpha/classes.rb, line 1495
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/analyticsadmin_v1alpha/classes.rb, line 1500
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