Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1FetchUsersRequestingExtensionResponse

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 a list of users that have requested the queried extension.

Instance Attribute Summary collapse

Instance Method Summary collapse

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_tokenString

Token to specify the next page in the list. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1887
1888
1889
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1887

def next_page_token
  @next_page_token
end

#total_sizeFixnum

Total number of users in response. Corresponds to the JSON property totalSize

Returns:

  • (Fixnum)


1892
1893
1894
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1892

def total_size
  @total_size
end

#user_detailsArray<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