Class: Appwrite::Models::RowList

Inherits:
Object
  • Object
show all
Defined in:
lib/appwrite/models/row_list.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(total:, rows:) ⇒ RowList

Returns a new instance of RowList.



9
10
11
12
13
14
15
# File 'lib/appwrite/models/row_list.rb', line 9

def initialize(
    total:,
    rows:
)
    @total = total
    @rows = rows
end

Instance Attribute Details

#rowsObject (readonly)

Returns the value of attribute rows.



7
8
9
# File 'lib/appwrite/models/row_list.rb', line 7

def rows
  @rows
end

#totalObject (readonly)

Returns the value of attribute total.



6
7
8
# File 'lib/appwrite/models/row_list.rb', line 6

def total
  @total
end

Class Method Details

.from(map:) ⇒ Object



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

def self.from(map:)
    RowList.new(
        total: map["total"],
        rows: map["rows"].map { |it| Row.from(map: it) }
    )
end

Instance Method Details

#convert_to(from_json) ⇒ Object



31
32
33
# File 'lib/appwrite/models/row_list.rb', line 31

def convert_to(from_json)
    rows.map { |it| it.convert_to(from_json) }
end

#to_mapObject



24
25
26
27
28
29
# File 'lib/appwrite/models/row_list.rb', line 24

def to_map
    {
        "total": @total,
        "rows": @rows.map { |it| it.to_map }
    }
end