com.global.api.network.enums.gnap.CardIdentifierPresenceIndicator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of globalpayments-sdk Show documentation
Show all versions of globalpayments-sdk Show documentation
API for processing payments through Global Payments
package com.global.api.network.enums.gnap;
import com.global.api.entities.enums.IStringConstant;
public enum CardIdentifierPresenceIndicator implements IStringConstant {
CVDORCIDValueBypassed("0"),
CVDORCIDValueIsPresent("1"),
CVDORCIDValueOnTheCardButIllegible("2"),
CardholderStatesCardHasNoCVDORCIDImprint("9");
String value;
CardIdentifierPresenceIndicator(String value){this.value = value;}
public byte[] getBytes() {
return this.value.getBytes();
}
public String getValue() {
return this.value;
}
}