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