Skip to content

Commit d0f1493

Browse files
feat(api): add lp tax payer type enum value (#218)
1 parent 61018d4 commit d0f1493

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/finch/types/hris/company.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ class Entity(BaseModel):
4646
subtype: Optional[Literal["s_corporation", "c_corporation", "b_corporation"]] = None
4747
"""The tax payer subtype of the company."""
4848

49-
type: Optional[Literal["llc", "corporation", "sole_proprietor", "non_profit", "partnership", "cooperative"]] = None
49+
type: Optional[
50+
Literal["llc", "lp", "corporation", "sole_proprietor", "non_profit", "partnership", "cooperative"]
51+
] = None
5052
"""The tax payer type of the company."""
5153

5254

0 commit comments

Comments
 (0)