Class: Google::Apis::ToolresultsV1beta3::ListTestCasesResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ToolresultsV1beta3::ListTestCasesResponse
 
 
- 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
Response message for StepService.ListTestCases.
Instance Attribute Summary collapse
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Corresponds to the JSON property
nextPageToken. - 
  
    
      #test_cases  ⇒ Array<Google::Apis::ToolresultsV1beta3::TestCase> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
List of test cases.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListTestCasesResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ListTestCasesResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ ListTestCasesResponse
Returns a new instance of ListTestCasesResponse.
      1720 1721 1722  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1720 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#next_page_token ⇒ String
Corresponds to the JSON property nextPageToken
      1713 1714 1715  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1713 def next_page_token @next_page_token end  | 
  
#test_cases ⇒ Array<Google::Apis::ToolresultsV1beta3::TestCase>
List of test cases.
Corresponds to the JSON property testCases
      1718 1719 1720  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1718 def test_cases @test_cases end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1725 1726 1727 1728  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1725 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @test_cases = args[:test_cases] if args.key?(:test_cases) end  |