idempotency key delivery fix

This commit is contained in:
Stephan D
2026-01-21 16:50:47 +01:00
parent 87f99be01d
commit bd5dfb4f26
11 changed files with 63 additions and 24 deletions

View File

@@ -4,6 +4,7 @@ import 'package:pshared/models/payment/quote_aggregate.dart';
class PaymentQuotes {
final String quoteRef;
final String idempotencyKey;
final PaymentQuoteAggregate? aggregate;
final List<PaymentQuote>? quotes;
@@ -11,5 +12,6 @@ class PaymentQuotes {
required this.quoteRef,
required this.aggregate,
required this.quotes,
required this.idempotencyKey,
});
}