Class: Google::Apis::ToolresultsV1beta3::ListExecutionsResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ToolresultsV1beta3::ListExecutionsResponse
 
 
- 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 
Instance Attribute Summary collapse
- 
  
    
      #executions  ⇒ Array<Google::Apis::ToolresultsV1beta3::Execution> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Executions.
 - 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A continuation token to resume the query at the next item.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListExecutionsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ListExecutionsResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ ListExecutionsResponse
Returns a new instance of ListExecutionsResponse.
      1511 1512 1513  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1511 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#executions ⇒ Array<Google::Apis::ToolresultsV1beta3::Execution>
Executions. Always set.
Corresponds to the JSON property executions
      1503 1504 1505  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1503 def executions @executions end  | 
  
#next_page_token ⇒ String
A continuation token to resume the query at the next item. Will only be set if
there are more Executions to fetch.
Corresponds to the JSON property nextPageToken
      1509 1510 1511  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1509 def next_page_token @next_page_token end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1516 1517 1518 1519  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1516 def update!(**args) @executions = args[:executions] if args.key?(:executions) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end  |