Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/chromemanagement_v1/classes.rb,
lib/google/apis/chromemanagement_v1/representations.rb,
lib/google/apis/chromemanagement_v1/representations.rb

Overview

Response to ListChromeBrowserProfiles method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse

Returns a new instance of GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse.



4365
4366
4367
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4365

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#chrome_browser_profilesArray<Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ChromeBrowserProfile>

The list of profiles returned. Corresponds to the JSON property chromeBrowserProfiles



4352
4353
4354
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4352

def chrome_browser_profiles
  @chrome_browser_profiles
end

#next_page_tokenString

The pagination token that can be used to list the next page. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


4357
4358
4359
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4357

def next_page_token
  @next_page_token
end

#total_sizeFixnum

Total size represents an estimated number of resources returned. Not guaranteed to be accurate above 10k profiles. Corresponds to the JSON property totalSize

Returns:

  • (Fixnum)


4363
4364
4365
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4363

def total_size
  @total_size
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4370
4371
4372
4373
4374
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4370

def update!(**args)
  @chrome_browser_profiles = args[:chrome_browser_profiles] if args.key?(:chrome_browser_profiles)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @total_size = args[:total_size] if args.key?(:total_size)
end