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

com.braintreegateway.ExternalVault Maven / Gradle / Ivy

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

public class ExternalVault {
    private ExternalVault() {

    }

    public enum Status {
        WILL_VAULT("will_vault"),
        VAULTED("vaulted");

        private final String name;

        Status(String name) {
            this.name = name;
        }

        @Override
        public String toString() {
            return name;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy