com.checkout.common.CardCategory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of checkout-sdk-java Show documentation
Show all versions of checkout-sdk-java Show documentation
Checkout SDK for Java https://checkout.com
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