package online.ruemu.franifer.payment.transaction; import jakarta.validation.constraints.*; import java.math.*; public record CreateTransactionRequest(@NotBlank String customerName,@NotNull ProductType productType,@NotBlank String provider,@NotBlank String destination,@NotNull @DecimalMin("1.00") BigDecimal amount){}