UNPKG

shipstation-client

Version:
78 lines (77 loc) 4.63 kB
/** * ShipStation API v2 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * The detailed error codes that can be returned by the address validation API * @export * @enum {string} */ export declare const AddressValidationDetailCode: { readonly UnsupportedCountry: "unsupported_country"; readonly NonSupportedCountry: "non_supported_country"; readonly MinimumPostalCodeVerificationFailed: "minimum_postal_code_verification_failed"; readonly StreetDoesNotMatchUniqueStreetName: "street_does_not_match_unique_street_name"; readonly MultipleDirectionals: "multiple_directionals"; readonly MultipleMatches: "multiple_matches"; readonly SuiteNotValid: "suite_not_valid"; readonly SuiteMissing: "suite_missing"; readonly IncompatiblePairedLabels: "incompatible_paired_labels"; readonly InvalidHouseNumber: "invalid_house_number"; readonly MissingHouseNumber: "missing_house_number"; readonly InvalidBoxNumber: "invalid_box_number"; readonly InvalidChargeEvent: "invalid_charge_event"; readonly MissingBoxNumber: "missing_box_number"; readonly MissingCmraOrPrivateMailBoxNumber: "missing_cmra_or_private_mail_box_number"; readonly SuiteHasNoSecondaries: "suite_has_no_secondaries"; readonly PostalCodeChangedOrAdded: "postal_code_changed_or_added"; readonly StateProvinceChangedOrAdded: "state_province_changed_or_added"; readonly CityLocalityChangedOrAdded: "city_locality_changed_or_added"; readonly UrbanizationChanged: "urbanization_changed"; readonly StreetNameSpellingChangedOrAdded: "street_name_spelling_changed_or_added"; readonly StreetNameTypeChangedOrAdded: "street_name_type_changed_or_added"; readonly StreetDirectionChangedOrAdded: "street_direction_changed_or_added"; readonly SuiteTypeChangedOrAdded: "suite_type_changed_or_added"; readonly SuiteUnitNumberChangedOrAdded: "suite_unit_number_changed_or_added"; readonly DoubleDependentLocalityChangedOrAdded: "double_dependent_locality_changed_or_added"; readonly SubadministrativeAreaChangedOrAdded: "subadministrative_area_changed_or_added"; readonly SubnationalAreaChangedOrAdded: "subnational_area_changed_or_added"; readonly PoBoxChangedOrAdded: "po_box_changed_or_added"; readonly PremiseTypeChangedOrAdded: "premise_type_changed_or_added"; readonly HouseNumberChanged: "house_number_changed"; readonly OrganizationChangedOrAdded: "organization_changed_or_added"; readonly PartiallyVerifiedToStateLevel: "partially_verified_to_state_level"; readonly PartiallyVerifiedToCityLevel: "partially_verified_to_city_level"; readonly PartiallyVerifiedToStreetLevel: "partially_verified_to_street_level"; readonly PartiallyVerifiedToPremiseLevel: "partially_verified_to_premise_level"; readonly VerifiedToStateLevel: "verified_to_state_level"; readonly VerifiedToCityLevel: "verified_to_city_level"; readonly VerifiedToStreetLevel: "verified_to_street_level"; readonly VerifiedToPremiseLevel: "verified_to_premise_level"; readonly VerifiedToSuiteLevel: "verified_to_suite_level"; readonly CodedToStreetLavel: "coded_to_street_lavel"; readonly CodedToNeighborhoodLevel: "coded_to_neighborhood_level"; readonly CodedToCommunityLevel: "coded_to_community_level"; readonly CodedToStateLevel: "coded_to_state_level"; readonly CodedToRooftopLevel: "coded_to_rooftop_level"; readonly CodedToRooftopInterpolationLevel: "coded_to_rooftop_interpolation_level"; readonly NameMaxLengthExceeded: "name_max_length_exceeded"; readonly PhoneMaxLengthExceeded: "phone_max_length_exceeded"; readonly CompanyNameMaxLengthExceeded: "company_name_max_length_exceeded"; readonly Line1MinMaxLength: "line1_min_max_length"; readonly Line2MaxLengthExceeded: "line2_max_length_exceeded"; readonly Line3MaxLengthExceeded: "line3_max_length_exceeded"; readonly CityLocalityMaxLengthExceeded: "city_locality_max_length_exceeded"; readonly StateProvinceMaxLengthExceeded: "state_province_max_length_exceeded"; readonly InvalidPostalCode: "invalid_postal_code"; readonly CountryInvalidLength: "country_invalid_length"; readonly AddressNotFound: "address_not_found"; }; export type AddressValidationDetailCode = typeof AddressValidationDetailCode[keyof typeof AddressValidationDetailCode];