RefundStatus.java

package com.ecommerce.payment.domain;

public enum RefundStatus {
    PROCESSING,
    FAILED,
    SUCCESS
}