java-bitpay-client/src/model/InvoiceFlags.java

23 lines
426 B
Java

package model;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
public class InvoiceFlags {
private boolean _refundable = false;
public InvoiceFlags() {}
@JsonIgnore
public boolean getRefundable() {
return _refundable;
}
@JsonProperty("refundable")
public void setRefundable(boolean refundable) {
this._refundable = refundable;
}
}