Skip to content

Commit 647e7c6

Browse files
feat(api): api update
1 parent c3b3973 commit 647e7c6

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 46
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-f8783c7acb61970583e95ad6d75c8735d2ae5e4344f808957e0b9cc22f2b8c04.yml
3-
openapi_spec_hash: 2baa7719b95befc1553083d5757bd99a
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-ef0b0fb4ec85648855da514cbc53018cb429fb37bce8570bc6c44254eb32c62f.yml
3+
openapi_spec_hash: 38622a4a3cdef04686053018329616f2
44
config_hash: 6d3585c0032e08d723d077d660fc8448

src/finch/types/hris/pay_statement.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,10 +153,10 @@ class PayStatement(BaseModel):
153153
earnings: Optional[List[Optional[Earning]]] = None
154154
"""The array of earnings objects associated with this pay statement"""
155155

156-
employee_deductions: Optional[List[Optional[EmployeeDeduction]]] = None
156+
employee_deductions: Optional[List[EmployeeDeduction]] = None
157157
"""The array of deductions objects associated with this pay statement."""
158158

159-
employer_contributions: Optional[List[Optional[EmployerContribution]]] = None
159+
employer_contributions: Optional[List[EmployerContribution]] = None
160160

161161
gross_pay: Optional[Money] = None
162162

@@ -168,7 +168,7 @@ class PayStatement(BaseModel):
168168
payment_method: Optional[Literal["check", "direct_deposit", "other"]] = None
169169
"""The payment method."""
170170

171-
taxes: Optional[List[Optional[Tax]]] = None
171+
taxes: Optional[List[Tax]] = None
172172
"""The array of taxes objects associated with this pay statement."""
173173

174174
total_hours: Optional[float] = None

0 commit comments

Comments
 (0)