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