Class: Appwrite::Models::Country
- Inherits:
-
Object
- Object
- Appwrite::Models::Country
- Defined in:
- lib/appwrite/models/country.rb
Instance Attribute Summary collapse
-
#code ⇒ Object
readonly
Returns the value of attribute code.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(name:, code:) ⇒ Country
constructor
A new instance of Country.
- #to_map ⇒ Object
Constructor Details
#initialize(name:, code:) ⇒ Country
Returns a new instance of Country.
9 10 11 12 13 14 15 |
# File 'lib/appwrite/models/country.rb', line 9 def initialize( name:, code: ) @name = name @code = code end |
Instance Attribute Details
#code ⇒ Object (readonly)
Returns the value of attribute code.
7 8 9 |
# File 'lib/appwrite/models/country.rb', line 7 def code @code end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
6 7 8 |
# File 'lib/appwrite/models/country.rb', line 6 def name @name end |
Class Method Details
Instance Method Details
#to_map ⇒ Object
24 25 26 27 28 29 |
# File 'lib/appwrite/models/country.rb', line 24 def to_map { "name": @name, "code": @code } end |