Class: Appwrite::Models::ProxyRuleList

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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(total:, rules:) ⇒ ProxyRuleList

Returns a new instance of ProxyRuleList.



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

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

Instance Attribute Details

#rulesObject (readonly)

Returns the value of attribute rules.



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

def rules
  @rules
end

#totalObject (readonly)

Returns the value of attribute total.



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

def total
  @total
end

Class Method Details

.from(map:) ⇒ Object



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

def self.from(map:)
    ProxyRuleList.new(
        total: map["total"],
        rules: map["rules"].map { |it| ProxyRule.from(map: it) }
    )
end

Instance Method Details

#to_mapObject



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

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