Class: Glossarist::Designation::Symbol
- Defined in:
- lib/glossarist/designation/symbol.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#international ⇒ Object
Returns the value of attribute international.
Attributes inherited from Base
#designation, #geographical_area
Instance Method Summary collapse
Methods inherited from Base
Methods included from Utilities::Enum
Methods inherited from Model
from_h, #initialize, new, #set_attribute
Constructor Details
This class inherits a constructor from Glossarist::Model
Instance Attribute Details
#international ⇒ Object
Returns the value of attribute international.
8 9 10 |
# File 'lib/glossarist/designation/symbol.rb', line 8 def international @international end |
Instance Method Details
#to_h ⇒ Object
10 11 12 13 14 15 16 17 18 |
# File 'lib/glossarist/designation/symbol.rb', line 10 def to_h { "type" => Glossarist::Designation::SERIALIZED_TYPES[self.class], "normative_status" => normative_status, "geographical_area" => geographical_area, "designation" => designation, "international" => international, }.compact end |