All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.spare.sdk.payment.enumeration.SpPaymentStatus Maven / Gradle / Ivy

The newest version!
package com.spare.sdk.payment.enumeration;

public enum SpPaymentStatus {
    AWAITING_AUTHORIZATION("AWAITING_AUTHORIZATION", 0),

    PENDING("PENDING", 1),

    COMPLETED("COMPLETED", 2),

    REJECTED("REJECTED", 3);
    private String name;

    private int value;

    SpPaymentStatus(String name, int value) {
        this.name = name;
        this.value = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy