Skip to content

Commit d282186

Browse files
feat(api): api update
1 parent 1c50836 commit d282186

File tree

2 files changed

+44
-2
lines changed

2 files changed

+44
-2
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: 232
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-a76bb95dd4266308c0e772481f487ebd92b62b738a74a9d20cfd3343afea15eb.yml
3-
openapi_spec_hash: f26bb4c5e7e19cd85a58302c4c8745f5
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-cc2859c7f6f2b4f9338210cf63f9c769c5ee05c677973ae0181f8e0f442806cd.yml
3+
openapi_spec_hash: 2fe8fbbcca41e6ff2873d9787333bd0f
44
config_hash: d15ecbf4dc8a7a0ef99397d11b557444

src/increase/types/card_payment.py

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,48 @@ class ElementCardAuthentication(BaseModel):
215215
id: str
216216
"""The Card Authentication identifier."""
217217

218+
billing_address_city: Optional[str] = None
219+
"""
220+
The city of the cardholder billing address associated with the card used for
221+
this purchase.
222+
"""
223+
224+
billing_address_country: Optional[str] = None
225+
"""
226+
The country of the cardholder billing address associated with the card used for
227+
this purchase.
228+
"""
229+
230+
billing_address_line1: Optional[str] = None
231+
"""
232+
The first line of the cardholder billing address associated with the card used
233+
for this purchase.
234+
"""
235+
236+
billing_address_line2: Optional[str] = None
237+
"""
238+
The second line of the cardholder billing address associated with the card used
239+
for this purchase.
240+
"""
241+
242+
billing_address_line3: Optional[str] = None
243+
"""
244+
The third line of the cardholder billing address associated with the card used
245+
for this purchase.
246+
"""
247+
248+
billing_address_postal_code: Optional[str] = None
249+
"""
250+
The postal code of the cardholder billing address associated with the card used
251+
for this purchase.
252+
"""
253+
254+
billing_address_state: Optional[str] = None
255+
"""
256+
The US state of the cardholder billing address associated with the card used for
257+
this purchase.
258+
"""
259+
218260
card_id: str
219261
"""The identifier of the Card."""
220262

0 commit comments

Comments
 (0)