/** Represents the enum public.PaymentStatusEnum */
type PaymentStatusEnum =
| 'processing'
| 'success'
| 'failed';
export default PaymentStatusEnum;