separated quotation and payments

This commit is contained in:
Stephan D
2026-02-10 18:29:47 +01:00
parent 6745bc0f6f
commit 296cc7b86a
163 changed files with 13516 additions and 191 deletions

View File

@@ -10,13 +10,13 @@ class VerificationResponse {
@JsonKey(name: 'cooldown_seconds', defaultValue: 0)
final int cooldownSeconds;
@JsonKey(defaultValue: '')
final String destination;
final String target;
final String idempotencyKey;
const VerificationResponse({
required this.ttlSeconds,
required this.cooldownSeconds,
required this.destination,
required this.target,
required this.idempotencyKey,
});