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

irita.sdk.model.Fee Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy