Class: Google::Apis::WorkflowexecutionsV1beta::ListExecutionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::WorkflowexecutionsV1beta::ListExecutionsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/workflowexecutions_v1beta/classes.rb,
generated/google/apis/workflowexecutions_v1beta/representations.rb,
generated/google/apis/workflowexecutions_v1beta/representations.rb
Overview
Response for the ListExecutions method.
Instance Attribute Summary collapse
-
#executions ⇒ Array<Google::Apis::WorkflowexecutionsV1beta::Execution>
The executions which match the request.
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page.
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.
143 144 145 |
# File 'generated/google/apis/workflowexecutions_v1beta/classes.rb', line 143 def initialize(**args) update!(**args) end |
Instance Attribute Details
#executions ⇒ Array<Google::Apis::WorkflowexecutionsV1beta::Execution>
The executions which match the request.
Corresponds to the JSON property executions
135 136 137 |
# File 'generated/google/apis/workflowexecutions_v1beta/classes.rb', line 135 def executions @executions end |
#next_page_token ⇒ String
A token, which can be sent as page_token
to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
141 142 143 |
# File 'generated/google/apis/workflowexecutions_v1beta/classes.rb', line 141 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
148 149 150 151 |
# File 'generated/google/apis/workflowexecutions_v1beta/classes.rb', line 148 def update!(**args) @executions = args[:executions] if args.key?(:executions) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |