You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/kernel/types/vaults/agentcard_checkout_preparation.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@
13
13
classAgentcardCheckoutPreparation(BaseModel):
14
14
"""One-use processor-bound checkout preparation.
15
15
16
-
Keep the approval page open through token handoff. The amount is display-only and does not constrain the merchant's eventual charge.
16
+
Keep the approval page open through device handoff, including Adyen encryption. The amount is declared by the caller and does not constrain the merchant's eventual charge. Adyen device approval and browser Authorised responses are not capture or fulfillment evidence.
"""Prepare an unused AgentCard card for a supported tokenization checkout.
13
+
"""Prepare an unused AgentCard card for a supported checkout.
14
14
15
15
Deliver the returned approval URL and keep the approval page open. Poll the item until ready_to_submit, then submit native Pay before preparation.expires_at. Readiness lasts at most 30 seconds. Unused preparations expire automatically. Preparations are single-use even after failure or expiry; do not automatically retry and reconcile uncertain outcomes with the merchant.
16
16
"""
17
17
18
18
checkout: Required[VaultCheckoutContextParam]
19
19
"""
20
-
Required when preparing an unused AgentCard card for a supported tokenization
20
+
Required when preparing an unused AgentCard card for a supported checkout
21
21
processor. Consent is bound to this browser and declared merchant origin, not a
22
22
tab. Wait for the item's ready_to_submit status before native Pay and submit
23
23
within its readiness deadline. Unused preparations expire automatically; every
Required when preparing an unused AgentCard card for a supported tokenization processor. Consent is bound to this browser and declared merchant origin, not a tab. Wait for the item's ready_to_submit status before native Pay and submit within its readiness deadline. Unused preparations expire automatically; every preparation is single-use, including after failure or expiry.
14
+
Required when preparing an unused AgentCard card for a supported checkout processor. Consent is bound to this browser and declared merchant origin, not a tab. Wait for the item's ready_to_submit status before native Pay and submit within its readiness deadline. Unused preparations expire automatically; every preparation is single-use, including after failure or expiry.
15
15
"""
16
16
17
17
browser_id: Required[str]
18
18
"""Active browser session with this vault bound to it."""
0 commit comments