Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CountChromeAppRequestsResponse

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 containing summary of requested app installations.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleChromeManagementV1CountChromeAppRequestsResponse

Returns a new instance of GoogleChromeManagementV1CountChromeAppRequestsResponse.



842
843
844
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 842

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

Instance Attribute Details

#next_page_tokenString

Token to specify the next page in the list. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


830
831
832
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 830

def next_page_token
  @next_page_token
end

#requested_appsArray<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ChromeAppRequest>

Count of requested apps matching request. Corresponds to the JSON property requestedApps



835
836
837
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 835

def requested_apps
  @requested_apps
end

#total_sizeFixnum

Total number of matching app requests. Corresponds to the JSON property totalSize

Returns:

  • (Fixnum)


840
841
842
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 840

def total_size
  @total_size
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



847
848
849
850
851
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 847

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