File tree 4 files changed +30
-1
lines changed
4 files changed +30
-1
lines changed Original file line number Diff line number Diff line change 1
1
configured_endpoints : 37
2
- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/finch-15385b754979d87bd7e583f618870246e79d1430a761e5bcd653db78cfab4789 .yml
2
+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/finch-60f88b9ae0cedc03dd888b63ca8dec25658c87e6cc3493170114144ca9e070c9 .yml
Original file line number Diff line number Diff line change @@ -386,6 +386,10 @@ class AccountUpdateEventDataAuthenticationMethodSupportedFieldsPayment(BaseModel
386
386
387
387
pay_date : Optional [bool ] = None
388
388
389
+ pay_frequencies : Optional [bool ] = None
390
+
391
+ pay_group_ids : Optional [bool ] = None
392
+
389
393
pay_period : Optional [AccountUpdateEventDataAuthenticationMethodSupportedFieldsPaymentPayPeriod ] = None
390
394
391
395
Original file line number Diff line number Diff line change 1
1
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
3
3
from typing import List , Optional
4
+ from typing_extensions import Literal
4
5
5
6
from ..money import Money
6
7
from ..._models import BaseModel
@@ -35,5 +36,25 @@ class Payment(BaseModel):
35
36
36
37
pay_date : Optional [str ] = None
37
38
39
+ pay_frequencies : Optional [
40
+ List [
41
+ Literal [
42
+ "annually" ,
43
+ "semi_annually" ,
44
+ "quarterly" ,
45
+ "monthly" ,
46
+ "semi_monthly" ,
47
+ "bi_weekly" ,
48
+ "weekly" ,
49
+ "daily" ,
50
+ "other" ,
51
+ ]
52
+ ]
53
+ ] = None
54
+ """List of pay frequencies associated with this payment."""
55
+
56
+ pay_group_ids : Optional [List [str ]] = None
57
+ """Array of the Finch id (uuidv4) of every pay group associated with this payment."""
58
+
38
59
pay_period : Optional [PayPeriod ] = None
39
60
"""The pay period object."""
Original file line number Diff line number Diff line change @@ -375,6 +375,10 @@ class AuthenticationMethodSupportedFieldsPayment(BaseModel):
375
375
376
376
pay_date : Optional [bool ] = None
377
377
378
+ pay_frequencies : Optional [bool ] = None
379
+
380
+ pay_group_ids : Optional [bool ] = None
381
+
378
382
pay_period : Optional [AuthenticationMethodSupportedFieldsPaymentPayPeriod ] = None
379
383
380
384
You can’t perform that action at this time.
0 commit comments