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.olo.payments.CashPayment;

import java.math.BigDecimal;

public class CashPaymentBuilder {
    private final CashPayment payment = new CashPayment();

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

    public CashPayment build() {
        return payment;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy