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;
}
}