ENUM

AttentionReason

link GraphQL Schema definition

1enum AttentionReason {
2# Reasons for this subscriptions failing are unknown and should undergo investigation.
3UNKNOWN
4# Payment has failed but future attempts might succeed.
5# This might happen when card has insufficient funds.
6PAYMENT_DECLINED
7# The payment method associated with this subscription is no longer valid
8# and will not become valid without on-session customer interaction (eg.
9# providing a new card details).
10PAYMENT_REVOKED
11# Selected variant is no longer purchasable.
12NOT_PURCHASABLE
13# Selected item is out of stock.
14OUT_OF_STOCK
15# Selected shipping is not available.
16NO_SHIPPING
17# Selected market is not available or not suitable for delivery country.
18NO_MARKET
19}