package com.bookshop.creational.simplefactory;
import java.math.BigDecimal;
/** Proof of a completed payment, tagged with the provider that handled it. */
public record PaymentReceipt(String provider, BigDecimal amount) {
}
package com.bookshop.creational.simplefactory;
import java.math.BigDecimal;
/** Proof of a completed payment, tagged with the provider that handled it. */
public record PaymentReceipt(String provider, BigDecimal amount) {
}