Class: Appwrite::Models::LocaleCodeList
- Inherits:
-
Object
- Object
- Appwrite::Models::LocaleCodeList
- Defined in:
- lib/appwrite/models/locale_code_list.rb
Instance Attribute Summary collapse
-
#locale_codes ⇒ Object
readonly
Returns the value of attribute locale_codes.
-
#total ⇒ Object
readonly
Returns the value of attribute total.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(total:, locale_codes:) ⇒ LocaleCodeList
constructor
A new instance of LocaleCodeList.
- #to_map ⇒ Object
Constructor Details
#initialize(total:, locale_codes:) ⇒ LocaleCodeList
Returns a new instance of LocaleCodeList.
9 10 11 12 13 14 15 |
# File 'lib/appwrite/models/locale_code_list.rb', line 9 def initialize( total:, locale_codes: ) @total = total @locale_codes = locale_codes end |
Instance Attribute Details
#locale_codes ⇒ Object (readonly)
Returns the value of attribute locale_codes.
7 8 9 |
# File 'lib/appwrite/models/locale_code_list.rb', line 7 def locale_codes @locale_codes end |
#total ⇒ Object (readonly)
Returns the value of attribute total.
6 7 8 |
# File 'lib/appwrite/models/locale_code_list.rb', line 6 def total @total end |
Class Method Details
.from(map:) ⇒ Object
17 18 19 20 21 22 |
# File 'lib/appwrite/models/locale_code_list.rb', line 17 def self.from(map:) LocaleCodeList.new( total: map["total"], locale_codes: map["localeCodes"].map { |it| LocaleCode.from(map: it) } ) end |
Instance Method Details
#to_map ⇒ Object
24 25 26 27 28 29 |
# File 'lib/appwrite/models/locale_code_list.rb', line 24 def to_map { "total": @total, "localeCodes": @locale_codes.map { |it| it.to_map } } end |