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

com.braintreegateway.test.CreditCardDefaults Maven / Gradle / Ivy

There is a newer version: 3.32.0_1
Show newest version
package com.braintreegateway.test;

public enum CreditCardDefaults {

  IssuingBank("NETWORK ONLY"),
  CountryOfIssuance("USA");

  private final String value;

  public String getValue() {
    return value;
  }

  private CreditCardDefaults(String value) {
    this.value = value;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy