Class: Google::Apis::WorkflowexecutionsV1::ListCallbacksResponse
- Inherits:
-
Object
- Object
- Google::Apis::WorkflowexecutionsV1::ListCallbacksResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/workflowexecutions_v1/classes.rb,
lib/google/apis/workflowexecutions_v1/representations.rb,
lib/google/apis/workflowexecutions_v1/representations.rb
Overview
RPC response object for the ListCallbacks method.
Instance Attribute Summary collapse
-
#callbacks ⇒ Array<Google::Apis::WorkflowexecutionsV1::Callback>
The callbacks 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) ⇒ ListCallbacksResponse
constructor
A new instance of ListCallbacksResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListCallbacksResponse
Returns a new instance of ListCallbacksResponse.
320 321 322 |
# File 'lib/google/apis/workflowexecutions_v1/classes.rb', line 320 def initialize(**args) update!(**args) end |
Instance Attribute Details
#callbacks ⇒ Array<Google::Apis::WorkflowexecutionsV1::Callback>
The callbacks which match the request.
Corresponds to the JSON property callbacks
312 313 314 |
# File 'lib/google/apis/workflowexecutions_v1/classes.rb', line 312 def callbacks @callbacks 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
318 319 320 |
# File 'lib/google/apis/workflowexecutions_v1/classes.rb', line 318 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
325 326 327 328 |
# File 'lib/google/apis/workflowexecutions_v1/classes.rb', line 325 def update!(**args) @callbacks = args[:callbacks] if args.key?(:callbacks) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |