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

com.wix.restaurants.builders.CashPaymentBuilder Maven / Gradle / Ivy

There is a newer version: 1.22.0
Show newest version
package com.wix.restaurants.builders;

import com.openrest.v1_1.Payment;

import java.math.BigDecimal;

public class CashPaymentBuilder extends BasePaymentBuilder {
    public CashPaymentBuilder() {
        payment.type = Payment.PAYMENT_TYPE_CASH;
    }

    public CashPaymentBuilder amount(double amount) {
        payment.amount = BigDecimal.valueOf(amount).movePointRight(2).intValueExact();
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy