Files
medusa-store/www/apps/resources/references/utils/enums/utils.PaymentActions/page.mdx
github-actions[bot] dc94e62a6a chore(docs): Generated References (automated) (#11395)
Generated the following references:
- `api_key`
- `auth`
- `cart`
- `core_flows`
- `currency`
- `customer`
- `fulfillment`
- `inventory_next`
- `js_sdk`
- `medusa`
- `medusa_config`
- `modules`
- `modules_sdk`
- `notification`
- `order`
- `payment`
- `payment_models`
- `payment_provider`
- `pricing`
- `product`
- `promotion`
- `region`
- `sales_channel`
- `stock_location_next`
- `store`
- `tax`
- `types`
- `user`
- `utils`

Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com>
Co-authored-by: Shahed Nasser <27354907+shahednasser@users.noreply.github.com>
2025-02-11 12:02:30 +00:00

50 lines
821 B
Plaintext

import { TypeList } from "docs-ui"
# PaymentActions
Normalized events from payment provider to internal payment module events. In principle, these should match the payment status.
## Enumeration Members
### AUTHORIZED
**AUTHORIZED** = `"authorized"`
Payment session has been authorized and there are available funds for capture.
### SUCCESSFUL
**SUCCESSFUL** = `"captured"`
Payment was successful and the mount is captured.
### FAILED
**FAILED** = `"failed"`
Payment failed.
### PENDING
**PENDING** = `"pending"`
Payment is pending.
### REQUIRES\_MORE
**REQUIRES\_MORE** = `"requires_more"`
Payment requires more information.
### CANCELED
**CANCELED** = `"canceled"`
Payment was canceled.
### NOT\_SUPPORTED
**NOT\_SUPPORTED** = `"not_supported"`
Received an event that is not processable.