Class: Appwrite::Models::PolicySessionLimit

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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id:, total:) ⇒ PolicySessionLimit

Returns a new instance of PolicySessionLimit.



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

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

Instance Attribute Details

#idObject (readonly)

Returns the value of attribute id.



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

def id
  @id
end

#totalObject (readonly)

Returns the value of attribute total.



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

def total
  @total
end

Class Method Details

.from(map:) ⇒ Object



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

def self.from(map:)
    PolicySessionLimit.new(
        id: map["$id"],
        total: map["total"]
    )
end

Instance Method Details

#to_mapObject



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

def to_map
    {
        "$id": @id,
        "total": @total
    }
end