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

@@ -11,6 +11,7 @@ part 'payment.g.dart';
class PaymentDTO {
final String? paymentRef;
final String? state;
final String? comment;
final PaymentResponseEndpointDTO? source;
final PaymentResponseEndpointDTO? destination;
final String? failureCode;
@@ -23,6 +24,7 @@ class PaymentDTO {
const PaymentDTO({
this.paymentRef,
this.state,
this.comment,
this.source,
this.destination,
this.failureCode,