irita.sdk.model.Fee 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 Fee {
private String amount;
private String denom;
public Fee() {
}
public Fee(String amount, String denom) {
this.amount = amount;
this.denom = denom;
}
public String getAmount() {
return amount;
}
public Fee setAmount(String amount) {
this.amount = amount;
return this;
}
public String getDenom() {
return denom;
}
public Fee setDenom(String denom) {
this.denom = denom;
return this;
}
}