Class: JobWorkflow::Monitoring::ExecutionPage
- Inherits:
-
Object
- Object
- JobWorkflow::Monitoring::ExecutionPage
- Defined in:
- lib/job_workflow/monitoring/execution_page.rb
Instance Attribute Summary collapse
-
#executions ⇒ Object
readonly
: Array.
-
#next_cursor ⇒ Object
readonly
: String?.
Instance Method Summary collapse
-
#initialize(executions:, next_cursor:) ⇒ ExecutionPage
constructor
: (executions: Array, next_cursor: String?) -> void.
Constructor Details
#initialize(executions:, next_cursor:) ⇒ ExecutionPage
: (executions: Array, next_cursor: String?) -> void
10 11 12 13 |
# File 'lib/job_workflow/monitoring/execution_page.rb', line 10 def initialize(executions:, next_cursor:) @executions = executions @next_cursor = next_cursor end |
Instance Attribute Details
#executions ⇒ Object (readonly)
: Array
6 7 8 |
# File 'lib/job_workflow/monitoring/execution_page.rb', line 6 def executions @executions end |
#next_cursor ⇒ Object (readonly)
: String?
7 8 9 |
# File 'lib/job_workflow/monitoring/execution_page.rb', line 7 def next_cursor @next_cursor end |