Class: Google::Apis::ToolresultsV1beta3::ListExecutionsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/toolresults_v1beta3/classes.rb,
generated/google/apis/toolresults_v1beta3/representations.rb,
generated/google/apis/toolresults_v1beta3/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ListExecutionsResponse

Returns a new instance of ListExecutionsResponse



1134
1135
1136
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1134

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#executionsArray<Google::Apis::ToolresultsV1beta3::Execution>

Executions. Always set. Corresponds to the JSON property executions



1126
1127
1128
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1126

def executions
  @executions
end

#next_page_tokenString

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

Returns:

  • (String)


1132
1133
1134
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1132

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1139
1140
1141
1142
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1139

def update!(**args)
  @executions = args[:executions] if args.key?(:executions)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end