com.github.ccob.bittrex4j.ApiKeySecret Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bittrex4j Show documentation
Show all versions of bittrex4j Show documentation
A java library for accessing the Bittrex Exchange Web API and Web Sockets.
package com.github.ccob.bittrex4j;
public class ApiKeySecret {
private String key;
private String secret;
public ApiKeySecret(String key, String secret) {
this.key = key;
this.secret = secret;
}
public String getKey() {
return key;
}
public String getSecret() {
return secret;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy