Class: Google::Apis::ToolresultsV1beta3::EncounteredLoginScreen
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ToolresultsV1beta3::EncounteredLoginScreen
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/toolresults_v1beta3/classes.rb,
lib/google/apis/toolresults_v1beta3/representations.rb,
lib/google/apis/toolresults_v1beta3/representations.rb 
Overview
Additional details about encountered login screens.
Instance Attribute Summary collapse
- 
  
    
      #distinct_screens  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Number of encountered distinct login screens.
 - 
  
    
      #screen_ids  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Subset of login screens.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ EncounteredLoginScreen 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of EncounteredLoginScreen.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ EncounteredLoginScreen
Returns a new instance of EncounteredLoginScreen.
      580 581 582  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 580 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#distinct_screens ⇒ Fixnum
Number of encountered distinct login screens.
Corresponds to the JSON property distinctScreens
      573 574 575  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 573 def distinct_screens @distinct_screens end  | 
  
#screen_ids ⇒ Array<String>
Subset of login screens.
Corresponds to the JSON property screenIds
      578 579 580  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 578 def screen_ids @screen_ids end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      585 586 587 588  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 585 def update!(**args) @distinct_screens = args[:distinct_screens] if args.key?(:distinct_screens) @screen_ids = args[:screen_ids] if args.key?(:screen_ids) end  |