1313 "PayStatement" ,
1414 "PayStatementEarning" ,
1515 "PayStatementEarningAttributes" ,
16+ "PayStatementEarningAttributesMetadata" ,
1617 "PayStatementEmployeeDeduction" ,
1718 "PayStatementEmployeeDeductionAttributes" ,
19+ "PayStatementEmployeeDeductionAttributesMetadata" ,
1820 "PayStatementEmployerContribution" ,
1921 "PayStatementEmployerContributionAttributes" ,
22+ "PayStatementEmployerContributionAttributesMetadata" ,
2023 "PayStatementTax" ,
2124 "PayStatementTaxAttributes" ,
25+ "PayStatementTaxAttributesMetadata" ,
2226]
2327
2428
@@ -30,7 +34,7 @@ class PaymentCreateParams(TypedDict, total=False):
3034 start_date : str
3135
3236
33- class PayStatementEarningAttributes (TypedDict , total = False ):
37+ class PayStatementEarningAttributesMetadata (TypedDict , total = False ):
3438 metadata : Dict [str , object ]
3539 """The metadata to be attached to the entity by existing rules.
3640
@@ -39,6 +43,10 @@ class PayStatementEarningAttributes(TypedDict, total=False):
3943 """
4044
4145
46+ class PayStatementEarningAttributes (TypedDict , total = False ):
47+ metadata : PayStatementEarningAttributesMetadata
48+
49+
4250class PayStatementEarning (TypedDict , total = False ):
4351 amount : Optional [int ]
4452 """The earnings amount in cents."""
@@ -78,7 +86,7 @@ class PayStatementEarning(TypedDict, total=False):
7886 """The type of earning."""
7987
8088
81- class PayStatementEmployeeDeductionAttributes (TypedDict , total = False ):
89+ class PayStatementEmployeeDeductionAttributesMetadata (TypedDict , total = False ):
8290 metadata : Dict [str , object ]
8391 """The metadata to be attached to the entity by existing rules.
8492
@@ -87,6 +95,10 @@ class PayStatementEmployeeDeductionAttributes(TypedDict, total=False):
8795 """
8896
8997
98+ class PayStatementEmployeeDeductionAttributes (TypedDict , total = False ):
99+ metadata : PayStatementEmployeeDeductionAttributesMetadata
100+
101+
90102class PayStatementEmployeeDeduction (TypedDict , total = False ):
91103 amount : Optional [int ]
92104 """The deduction amount in cents."""
@@ -106,7 +118,7 @@ class PayStatementEmployeeDeduction(TypedDict, total=False):
106118 """Type of benefit."""
107119
108120
109- class PayStatementEmployerContributionAttributes (TypedDict , total = False ):
121+ class PayStatementEmployerContributionAttributesMetadata (TypedDict , total = False ):
110122 metadata : Dict [str , object ]
111123 """The metadata to be attached to the entity by existing rules.
112124
@@ -115,6 +127,10 @@ class PayStatementEmployerContributionAttributes(TypedDict, total=False):
115127 """
116128
117129
130+ class PayStatementEmployerContributionAttributes (TypedDict , total = False ):
131+ metadata : PayStatementEmployerContributionAttributesMetadata
132+
133+
118134class PayStatementEmployerContribution (TypedDict , total = False ):
119135 amount : Optional [int ]
120136 """The contribution amount in cents."""
@@ -131,7 +147,7 @@ class PayStatementEmployerContribution(TypedDict, total=False):
131147 """Type of benefit."""
132148
133149
134- class PayStatementTaxAttributes (TypedDict , total = False ):
150+ class PayStatementTaxAttributesMetadata (TypedDict , total = False ):
135151 metadata : Dict [str , object ]
136152 """The metadata to be attached to the entity by existing rules.
137153
@@ -140,6 +156,10 @@ class PayStatementTaxAttributes(TypedDict, total=False):
140156 """
141157
142158
159+ class PayStatementTaxAttributes (TypedDict , total = False ):
160+ metadata : PayStatementTaxAttributesMetadata
161+
162+
143163class PayStatementTax (TypedDict , total = False ):
144164 amount : Optional [int ]
145165 """The tax amount in cents."""
0 commit comments