Skip to content

Commit 2b4f00b

Browse files
fix(api): Correct field name from ach_hold__period to ach_hold_period
1 parent 260d4a6 commit 2b4f00b

2 files changed

Lines changed: 5 additions & 7 deletions

File tree

.stats.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 175
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-c06c4d54858775fef1de57e33d471e997cb28fe0c925fd7b08ba45fdd335e938.yml
3-
openapi_spec_hash: 23745357b2171bcdfb5d30bfef1df48d
4-
config_hash: 9dddee5f7af579864599849cb28a0770
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-64e9dd6979ae45f1bb6e77b40e8244ee46673332112ebf33fe2f3a287467ce85.yml
3+
openapi_spec_hash: ce885445b66e95c5671ee72c01882d79
4+
config_hash: 07f0e0f3036a4a5825cee527bc46b0b6

src/lithic/types/payment_create_params.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
from __future__ import annotations
44

55
from typing import Optional
6-
from typing_extensions import Literal, Required, Annotated, TypedDict
7-
8-
from .._utils import PropertyInfo
6+
from typing_extensions import Literal, Required, TypedDict
97

108
__all__ = ["PaymentCreateParams", "MethodAttributes"]
119

@@ -37,7 +35,7 @@ class PaymentCreateParams(TypedDict, total=False):
3735
class MethodAttributes(TypedDict, total=False):
3836
sec_code: Required[Literal["CCD", "PPD", "WEB"]]
3937

40-
ach_hold_period: Annotated[int, PropertyInfo(alias="ach_hold__period")]
38+
ach_hold_period: int
4139
"""Number of days to hold the ACH payment"""
4240

4341
addenda: Optional[str]

0 commit comments

Comments
 (0)