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

com.fireblocks.sdk.BasePath Maven / Gradle / Ivy

/*
 * Fireblocks API
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 1.6.2
 * Contact: [email protected]
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */

package com.fireblocks.sdk;

public enum BasePath {
    Sandbox("https://sandbox-api.fireblocks.io/v1"),
    US("https://api.fireblocks.io/v1"),
    EU("https://eu-api.fireblocks.io/v1"),
    EU2("https://eu2-api.fireblocks.io/v1");

    private final String url;

    BasePath(String url) {
        this.url = url;
    }

    public String getUrl() {
        return this.url;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy