irita.sdk.model.Coin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of irita-sdk Show documentation
Show all versions of irita-sdk Show documentation
Irita open alliance chain SDK (java)
package irita.sdk.model;
public class Coin {
private String denom;
private String amount;
public Coin() {
}
public Coin(String denom, String amount) {
this.denom = denom;
this.amount = amount;
}
public String getDenom() {
return denom;
}
public void setDenom(String denom) {
this.denom = denom;
}
public String getAmount() {
return amount;
}
public void setAmount(String amount) {
this.amount = amount;
}
}