Class: Google::Apis::WorkflowexecutionsV1beta::ListExecutionsResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#executionsArray<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_tokenString

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

Returns:

  • (String)


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