Sha256: 44670397dda194da8b18f8f2594566792f955464498f4c1f0d4e88e5c7fb12d5
Contents?: true
Size: 693 Bytes
Versions: 7
Compression:
Stored size: 693 Bytes
Contents
# frozen_string_literal: true module ShipEngine module Enums module AddressStatus # # Address validation was not validated against the database because pre-validation failed. # UNVERIFIED = "unverified" # # Address was successfully verified. # VERIFIED = "verified" # # The address was validated, but the address should be double checked. # WARNING = "warning" # # The address could not be validated with any degree of certainty against the database. # ERROR = "error" ALL = [ UNVERIFIED, VERIFIED, WARNING, ERROR, ].freeze end end end
Version data entries
7 entries across 7 versions & 1 rubygems