PaymentStatus.java

package com.ecommerce.payment.domain;

public enum PaymentStatus {
    PROCESSING,
    SUCCESS,
    FAILED
}