Class: Appwrite::Models::Continent

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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name:, code:) ⇒ Continent

Returns a new instance of Continent.



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

def initialize(
    name:,
    code:
)
    @name = name
    @code = code
end

Instance Attribute Details

#codeObject (readonly)

Returns the value of attribute code.



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

def code
  @code
end

#nameObject (readonly)

Returns the value of attribute name.



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

def name
  @name
end

Class Method Details

.from(map:) ⇒ Object



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

def self.from(map:)
    Continent.new(
        name: map["name"],
        code: map["code"]
    )
end

Instance Method Details

#to_mapObject



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

def to_map
    {
        "name": @name,
        "code": @code
    }
end