Skip to content

Commit

Permalink
feat(api): add lp tax payer type enum value (#218)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-bot authored Dec 7, 2023
1 parent 61018d4 commit d0f1493
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/finch/types/hris/company.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ class Entity(BaseModel):
subtype: Optional[Literal["s_corporation", "c_corporation", "b_corporation"]] = None
"""The tax payer subtype of the company."""

type: Optional[Literal["llc", "corporation", "sole_proprietor", "non_profit", "partnership", "cooperative"]] = None
type: Optional[
Literal["llc", "lp", "corporation", "sole_proprietor", "non_profit", "partnership", "cooperative"]
] = None
"""The tax payer type of the company."""


Expand Down

0 comments on commit d0f1493

Please sign in to comment.