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

com.github.ccob.bittrex4j.ApiKeySecret Maven / Gradle / Ivy

There is a newer version: 1.0.12
Show newest version
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