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

com.checkout.common.CardCategory Maven / Gradle / Ivy

There is a newer version: 6.4.2
Show newest version
package com.checkout.common;

import com.google.gson.annotations.SerializedName;

public enum CardCategory {

    @SerializedName(value = "Consumer", alternate = {"CONSUMER", "consumer"})
    CONSUMER,

    @SerializedName(value = "Commercial", alternate = {"COMMERCIAL", "commercial"})
    COMMERCIAL,

    @SerializedName(value = "All", alternate = {"ALL", "all"})
    ALL,

    @SerializedName(value = "Other", alternate = {"OTHER", "other"})
    OTHER,

    @SerializedName(value = "NotSet", alternate = {"NOTSET", "NOT_SET", "Not_Set", "notset", "not_set"})
    NOT_SET

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy