Class: UspsApi::Business

Inherits:
Object
  • Object
show all
Defined in:
lib/usps_api/models/business.rb

Overview

Indicates whether this is a business address. * ‘Y` - The address is a business address. * `N` - The address is not a business address.

Constant Summary collapse

BUSINESS =
[
  # TODO: Write general description for Y
  Y = 'Y'.freeze,

  # TODO: Write general description for N
  N = 'N'.freeze
].freeze

Class Method Summary collapse

Class Method Details

.from_value(value, default_value = Y) ⇒ Object



24
25
26
27
28
29
30
31
32
33
34
35
# File 'lib/usps_api/models/business.rb', line 24

def self.from_value(value, default_value = Y)
  return default_value if value.nil?

  str = value.to_s.strip

  case str.downcase
  when 'y' then Y
  when 'n' then N
  else
    default_value
  end
end

.validate(value) ⇒ Object



18
19
20
21
22
# File 'lib/usps_api/models/business.rb', line 18

def self.validate(value)
  return false if value.nil?

  BUSINESS.include?(value)
end