Method: Appwrite::Models::ExecutionList.from

Defined in:
lib/appwrite/models/execution_list.rb

.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