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