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

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

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

public enum SpPaymentSource {
    MOBILE("MOBILE", 0),
    WEB("WEB", 1),
    API("API", 2);

    private String name;
    private int value;

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy