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.
      1750 1751 1752  | 
    
      # File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1750 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
      1738 1739 1740  | 
    
      # File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1738 def next_page_token @next_page_token end  | 
  
#total_size ⇒ Fixnum
Total number of users in response.
Corresponds to the JSON property totalSize
      1743 1744 1745  | 
    
      # File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1743 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
      1748 1749 1750  | 
    
      # File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1748 def user_details @user_details end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1755 1756 1757 1758 1759  | 
    
      # File 'lib/google/apis/chromemanagement_v1/classes.rb', line 1755 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  |