Class: Appwrite::Models::ExecutionList
- Inherits:
-
Object
- Object
- Appwrite::Models::ExecutionList
- Defined in:
- lib/appwrite/models/execution_list.rb
Instance Attribute Summary collapse
-
#executions ⇒ Object
readonly
Returns the value of attribute executions.
-
#total ⇒ Object
readonly
Returns the value of attribute total.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(total:, executions:) ⇒ ExecutionList
constructor
A new instance of ExecutionList.
- #to_map ⇒ Object
Constructor Details
#initialize(total:, executions:) ⇒ ExecutionList
Returns a new instance of ExecutionList.
9 10 11 12 13 14 15 |
# File 'lib/appwrite/models/execution_list.rb', line 9 def initialize( total:, executions: ) @total = total @executions = executions end |
Instance Attribute Details
#executions ⇒ Object (readonly)
Returns the value of attribute executions.
7 8 9 |
# File 'lib/appwrite/models/execution_list.rb', line 7 def executions @executions end |
#total ⇒ Object (readonly)
Returns the value of attribute total.
6 7 8 |
# File 'lib/appwrite/models/execution_list.rb', line 6 def total @total end |
Class Method Details
.from(map:) ⇒ Object
17 18 19 20 21 22 |
# File 'lib/appwrite/models/execution_list.rb', line 17 def self.from(map:) ExecutionList.new( total: map["total"], executions: map["executions"].map { |it| Execution.from(map: it) } ) end |
Instance Method Details
#to_map ⇒ Object
24 25 26 27 28 29 |
# File 'lib/appwrite/models/execution_list.rb', line 24 def to_map { "total": @total, "executions": @executions.map { |it| it.to_map } } end |