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.
842 843 844 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 842 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
830 831 832 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 830 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
835 836 837 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 835 def requested_apps @requested_apps end |
#total_size ⇒ Fixnum
Total number of matching app requests.
Corresponds to the JSON property totalSize
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 |