Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CountChromeAppRequestsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CountChromeAppRequestsResponse
- 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
-
#next_page_token ⇒ String
Token to specify the next page in the list.
-
#requested_apps ⇒ Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ChromeAppRequest>
Count of requested apps matching request.
-
#total_size ⇒ Fixnum
Total number of matching app requests.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementV1CountChromeAppRequestsResponse
constructor
A new instance of GoogleChromeManagementV1CountChromeAppRequestsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementV1CountChromeAppRequestsResponse
Returns a new instance of GoogleChromeManagementV1CountChromeAppRequestsResponse.
875 876 877 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 875 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Token to specify the next page in the list.
Corresponds to the JSON property nextPageToken
863 864 865 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 863 def next_page_token @next_page_token end |
#requested_apps ⇒ Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ChromeAppRequest>
Count of requested apps matching request.
Corresponds to the JSON property requestedApps
868 869 870 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 868 def requested_apps @requested_apps end |
#total_size ⇒ Fixnum
Total number of matching app requests.
Corresponds to the JSON property totalSize
873 874 875 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 873 def total_size @total_size end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
880 881 882 883 884 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 880 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 |