ENUM
AttentionReason
link GraphQL Schema definition
1 enum AttentionReason { 2 # Reasons for this subscriptions failing are unknown and should undergo investigation. 3 4 # Payment has failed but future attempts might succeed. 5 # This might happen when card has insufficient funds. 6 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). 10 11 # Selected variant is no longer purchasable. 12 13 # Selected item is out of stock. 14 15 # Selected shipping is not available. 16 17 # Selected market is not available or not suitable for delivery country. 18 19 }