BusinessType
public enum BusinessType : String, Codable, Sendable, CaseIterable
Business types.
-
Sole proprietorship business type.
Declaration
Swift
case soleProprietorship = "SOLE_PROPRIETORSHIP" -
Limited liability partnership business type.
Declaration
Swift
case limitedLiabilityPartnership = "LLP" -
Limited liability company business type.
Declaration
Swift
case limitedLiabilityCompany = "LLC" -
C corporation business type.
Declaration
Swift
case cCorporation = "CORPORATION_C" -
S corporation business type.
Declaration
Swift
case sCorporation = "CORPORATION_S" -
Self employed business type.
Declaration
Swift
case selfEmployed = "SELF_EMPLOYED"
View on GitHub