com.global.api.entities.transactionApi.enums.TransactionAPIEcomIndicator 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.entities.transactionApi.enums;
import com.global.api.entities.enums.IStringConstant;
public enum TransactionAPIEcomIndicator implements IStringConstant {
ECOM_INDICATOR_1("1"),
ECOM_INDICATOR_2("2"),
ECOM_INDICATOR_3("3"),
ECOM_INDICATOR_5("5"),
ECOM_INDICATOR_7("7");
final String value;
TransactionAPIEcomIndicator(String value){
this.value = value;
}
@Override
public byte[] getBytes() {
return this.value.getBytes();
}
@Override
public String getValue() {
return this.value;
}
}