added comment for payment, changed intent and added amount ui in operations

This commit is contained in:
Arseni
2026-03-12 00:09:38 +03:00
parent ddc2f1facc
commit 13b84e1e0f
26 changed files with 271 additions and 298 deletions

View File

@@ -7,6 +7,7 @@ import 'package:pshared/models/payment/state.dart';
class Payment {
final String? paymentRef;
final String? state;
final String? comment;
final PaymentEndpoint? source;
final PaymentEndpoint? destination;
final PaymentOrchestrationState orchestrationState;
@@ -20,6 +21,7 @@ class Payment {
const Payment({
required this.paymentRef,
required this.state,
required this.comment,
required this.source,
required this.destination,
required this.orchestrationState,