Class: Lob::ZipCodeType
- Inherits:
-
Object
- Object
- Lob::ZipCodeType
- Defined in:
- lib/lob/models/zip_code_type.rb
Constant Summary collapse
- STANDARD =
"standard".freeze
- PO_BOX =
"po_box".freeze
- UNIQUE =
"unique".freeze
- MILITARY =
"military".freeze
- EMPTY =
"".freeze
Class Method Summary collapse
-
.build_from_hash(value) ⇒ String
Builds the enum from string.
Instance Method Summary collapse
-
#build_from_hash(value) ⇒ String
Builds the enum from string.
Class Method Details
.build_from_hash(value) ⇒ String
Builds the enum from string
27 28 29 |
# File 'lib/lob/models/zip_code_type.rb', line 27 def self.build_from_hash(value) new.build_from_hash(value) end |
Instance Method Details
#build_from_hash(value) ⇒ String
Builds the enum from string
34 35 36 37 38 |
# File 'lib/lob/models/zip_code_type.rb', line 34 def build_from_hash(value) constantValues = ZipCodeType.constants.select { |c| ZipCodeType::const_get(c) == value } raise "Invalid ENUM value #{value} for class #ZipCodeType" if constantValues.empty? value end |