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.



780
781
782
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 780

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)


768
769
770
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 768

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



773
774
775
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 773

def requested_apps
  @requested_apps
end

#total_sizeFixnum

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

Returns:

  • (Fixnum)


778
779
780
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 778

def total_size
  @total_size
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



785
786
787
788
789
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 785

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