Class: Appwrite::Models::FunctionList
- Inherits:
 - 
      Object
      
        
- Object
 - Appwrite::Models::FunctionList
 
 
- Defined in:
 - lib/appwrite/models/function_list.rb
 
Instance Attribute Summary collapse
- 
  
    
      #functions  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
Returns the value of attribute functions.
 - 
  
    
      #total  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
Returns the value of attribute total.
 
Class Method Summary collapse
Instance Method Summary collapse
- 
  
    
      #initialize(total:, functions:)  ⇒ FunctionList 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of FunctionList.
 - #to_map ⇒ Object
 
Constructor Details
#initialize(total:, functions:) ⇒ FunctionList
Returns a new instance of FunctionList.
      9 10 11 12 13 14 15  | 
    
      # File 'lib/appwrite/models/function_list.rb', line 9 def initialize( total:, functions: ) @total = total @functions = functions end  | 
  
Instance Attribute Details
#functions ⇒ Object (readonly)
Returns the value of attribute functions.
      7 8 9  | 
    
      # File 'lib/appwrite/models/function_list.rb', line 7 def functions @functions end  | 
  
#total ⇒ Object (readonly)
Returns the value of attribute total.
      6 7 8  | 
    
      # File 'lib/appwrite/models/function_list.rb', line 6 def total @total end  | 
  
Class Method Details
.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  | 
  
Instance Method Details
#to_map ⇒ Object
      24 25 26 27 28 29  | 
    
      # File 'lib/appwrite/models/function_list.rb', line 24 def to_map { "total": @total, "functions": @functions.map { |it| it.to_map } } end  |