Class: JobWorkflow::Monitoring::ExecutionPage
- Inherits:
-
Object
- Object
- JobWorkflow::Monitoring::ExecutionPage
- Defined in:
- lib/job_workflow/monitoring/execution_page.rb,
sig/generated/job_workflow/monitoring/execution_page.rbs
Instance Attribute Summary collapse
- #executions ⇒ Array[ExecutionViewModel] readonly
- #next_cursor ⇒ String? readonly
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 ⇒ Array[ExecutionViewModel] (readonly)
6 7 8 |
# File 'lib/job_workflow/monitoring/execution_page.rb', line 6 def executions @executions end |
#next_cursor ⇒ String? (readonly)
7 8 9 |
# File 'lib/job_workflow/monitoring/execution_page.rb', line 7 def next_cursor @next_cursor end |