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

com.easypost.model.Fee Maven / Gradle / Ivy

There is a newer version: 5.5.0
Show newest version
package com.easypost.model;

public class Fee{
    float amount;
    Boolean charged;
    Boolean refunded;

    public Boolean getRefunded() {
        return refunded;
    }
    public void setRefunded(Boolean refunded) {
        this.refunded = refunded;
    }

    public float getAmount() {
        return amount;
    }
    public void setAmount(float amount) {
        this.amount = amount;
    }

    public Boolean getCharged() {
        return charged;
    }
    public void setCharged(Boolean charged) {
        this.charged = charged;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy