Skip to content

Commit 74461d7

Browse files
feat(api): api update
1 parent 1b3b78e commit 74461d7

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
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: 234
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-dd0c83cac837fbe98857fa997663b0d0469344a7564bd4fe506e6c71d1d6af73.yml
3-
openapi_spec_hash: 2352f37602105b164533038199b21804
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-6157ec57275bc58dca42adf9d0b661f6dcfd725df7593dc453833dfcdcf33a8b.yml
3+
openapi_spec_hash: 0a80ae7882f3d72a333b80efe58ff5ea
44
config_hash: b7ec7f54fa76c1f8bde7a548710a1d38

src/increase/types/card_payment.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -414,22 +414,22 @@ class ElementCardAuthentication(BaseModel):
414414
transaction.
415415
"""
416416

417-
merchant_acceptor_id: str
417+
merchant_acceptor_id: Optional[str] = None
418418
"""
419419
The merchant identifier (commonly abbreviated as MID) of the merchant the card
420420
is transacting with.
421421
"""
422422

423-
merchant_category_code: str
423+
merchant_category_code: Optional[str] = None
424424
"""
425425
The Merchant Category Code (commonly abbreviated as MCC) of the merchant the
426426
card is transacting with.
427427
"""
428428

429-
merchant_country: str
429+
merchant_country: Optional[str] = None
430430
"""The country the merchant resides in."""
431431

432-
merchant_name: str
432+
merchant_name: Optional[str] = None
433433
"""The name of the merchant."""
434434

435435
prior_card_authentication_id: Optional[str] = None

src/increase/types/real_time_decision.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -246,22 +246,22 @@ class CardAuthentication(BaseModel):
246246
transaction.
247247
"""
248248

249-
merchant_acceptor_id: str
249+
merchant_acceptor_id: Optional[str] = None
250250
"""
251251
The merchant identifier (commonly abbreviated as MID) of the merchant the card
252252
is transacting with.
253253
"""
254254

255-
merchant_category_code: str
255+
merchant_category_code: Optional[str] = None
256256
"""
257257
The Merchant Category Code (commonly abbreviated as MCC) of the merchant the
258258
card is transacting with.
259259
"""
260260

261-
merchant_country: str
261+
merchant_country: Optional[str] = None
262262
"""The country the merchant resides in."""
263263

264-
merchant_name: str
264+
merchant_name: Optional[str] = None
265265
"""The name of the merchant."""
266266

267267
prior_card_authentication_id: Optional[str] = None

0 commit comments

Comments
 (0)