import 'package:pshared/models/payment/fx/quote.dart'; import 'package:pshared/models/payment/quote/amounts.dart'; import 'package:pshared/models/payment/quote/fees.dart'; class PaymentQuote { final String? quoteRef; final String? intentRef; final String? idempotencyKey; final QuoteAmounts? amounts; final QuoteFees? fees; final FxQuote? fxQuote; const PaymentQuote({ required this.quoteRef, required this.intentRef, required this.idempotencyKey, required this.amounts, required this.fees, required this.fxQuote, }); }