Method: Appwrite::Models::FunctionList.from

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

.from(map:) ⇒ Object



17
18
19
20
21
22
# File 'lib/appwrite/models/function_list.rb', line 17

def self.from(map:)
    FunctionList.new(
        total: map["total"],
        functions: map["functions"].map { |it| Function.from(map: it) }
    )
end