From c7075061a511c669e78869c60770467b6e9fc172 Mon Sep 17 00:00:00 2001 From: johnturnham Date: Sun, 26 Nov 2023 22:45:21 +0000 Subject: [PATCH] v2.1.535 --- lib/Model/BusinessType.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/Model/BusinessType.php b/lib/Model/BusinessType.php index f14ae18..b22b5c9 100644 --- a/lib/Model/BusinessType.php +++ b/lib/Model/BusinessType.php @@ -53,6 +53,8 @@ class BusinessType const CORPORATION = 'Corporation'; + const SOLE_PROPRIETORSHIP = 'Sole Proprietorship'; + /** * Gets allowable values of the enum * @return string[] @@ -64,7 +66,8 @@ public static function getAllowableEnumValues() self::LIMITED_LIABILITY_CORPORATION, self::CO_OPERATIVE, self::NON_PROFIT_CORPORATION, - self::CORPORATION + self::CORPORATION, + self::SOLE_PROPRIETORSHIP ]; } }