Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CountInstalledAppsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CountInstalledAppsResponse
- 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 details of queried installed apps.
Instance Attribute Summary collapse
-
#installed_apps ⇒ Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1InstalledApp>
List of installed apps matching request.
-
#next_page_token ⇒ String
Token to specify the next page of the request.
-
#total_size ⇒ Fixnum
Total number of installed apps matching request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementV1CountInstalledAppsResponse
constructor
A new instance of GoogleChromeManagementV1CountInstalledAppsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementV1CountInstalledAppsResponse
Returns a new instance of GoogleChromeManagementV1CountInstalledAppsResponse.
1100 1101 1102 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1100 def initialize(**args) update!(**args) end |
Instance Attribute Details
#installed_apps ⇒ Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1InstalledApp>
List of installed apps matching request.
Corresponds to the JSON property installedApps
1088 1089 1090 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1088 def installed_apps @installed_apps end |
#next_page_token ⇒ String
Token to specify the next page of the request.
Corresponds to the JSON property nextPageToken
1093 1094 1095 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1093 def next_page_token @next_page_token end |
#total_size ⇒ Fixnum
Total number of installed apps matching request.
Corresponds to the JSON property totalSize
1098 1099 1100 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1098 def total_size @total_size end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1105 1106 1107 1108 1109 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1105 def update!(**args) @installed_apps = args[:installed_apps] if args.key?(:installed_apps) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @total_size = args[:total_size] if args.key?(:total_size) end |