PaymentStatus.java

package hello.commerce.payment.model;

public enum PaymentStatus {
    INITIAL,
    PAID,
    CANCELED
}