com.banxa.model.Coin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
The Java SDK for integration with Banxa's API
The newest version!
package com.banxa.model;
import java.util.List;
public class Coin {
private String coinCode;
private String coinName;
private List blockchains;
public String getCoinCode() {
return coinCode;
}
public String getCoinName() {
return coinName;
}
public List getBlockchains() {
return blockchains;
}
}