Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1FetchUsersRequestingExtensionResponse
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementV1FetchUsersRequestingExtensionResponse
- 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 a list of users that have requested the queried extension.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Token to specify the next page in the list.
-
#total_size ⇒ Fixnum
Total number of users in response.
-
#user_details ⇒ Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1UserRequestingExtensionDetails>
Details of users that have requested the queried extension.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementV1FetchUsersRequestingExtensionResponse
constructor
A new instance of GoogleChromeManagementV1FetchUsersRequestingExtensionResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementV1FetchUsersRequestingExtensionResponse
Returns a new instance of GoogleChromeManagementV1FetchUsersRequestingExtensionResponse.
1899 1900 1901 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1899 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
1887 1888 1889 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1887 def next_page_token @next_page_token end |
#total_size ⇒ Fixnum
Total number of users in response.
Corresponds to the JSON property totalSize
1892 1893 1894 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1892 def total_size @total_size end |
#user_details ⇒ Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1UserRequestingExtensionDetails>
Details of users that have requested the queried extension.
Corresponds to the JSON property userDetails
1897 1898 1899 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1897 def user_details @user_details end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1904 1905 1906 1907 1908 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1904 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @total_size = args[:total_size] if args.key?(:total_size) @user_details = args[:user_details] if args.key?(:user_details) end |