Merge remote-tracking branch 'origin/main' into SEND066

merge lastest updates in main
This commit is contained in:
Arseni
2026-03-06 01:14:40 +03:00
11 changed files with 90 additions and 8 deletions

View File

@@ -17,6 +17,7 @@ class PaymentIntent {
final FeeTreatment feeTreatment;
final SettlementMode settlementMode;
final Map<String, String>? attributes;
final String? comment;
final Customer? customer;
const PaymentIntent({
@@ -29,6 +30,7 @@ class PaymentIntent {
this.fx,
this.settlementMode = SettlementMode.unspecified,
this.attributes,
this.comment,
this.customer,
required this.feeTreatment,
});