PaymentStatuses
Payment processing status indicating the current stage of payment lifecycle and available business actions
enum PaymentStatuses {
  OPEN
  PENDING
  AUTHORIZED
  CANCELLED
  EXPIRED
  FAILED
  PAID
  REFUNDED
  CHARGEBACK
}
Values
PaymentStatuses.OPEN
Payment created but not yet processed by payment service provider - awaiting initial processing
PaymentStatuses.PENDING
Payment submitted to payment service provider and awaiting processing response
PaymentStatuses.AUTHORIZED
Payment authorized but funds not yet captured - authorization can be captured or cancelled
PaymentStatuses.CANCELLED
Payment cancelled before completion - no funds were processed
PaymentStatuses.EXPIRED
Payment authorization expired without capture - funds are no longer reserved
PaymentStatuses.FAILED
Payment processing failed due to insufficient funds, declined card, or other payment issues
PaymentStatuses.PAID
Payment successfully completed and funds captured - order can be fulfilled
PaymentStatuses.REFUNDED
Payment refunded partially or fully to customer - funds returned to original payment method
PaymentStatuses.CHARGEBACK
Payment disputed and charged back by customer's financial institution - funds forcibly reversed
Member Of
CreatePaymentInput  input ● Payment  object ● UpdatePaymentInput  input