18 lines
429 B
PHP
18 lines
429 B
PHP
<?php
|
|
|
|
namespace App\Domains\Event\Actions\BookBankStatementPayments;
|
|
|
|
class BookBankStatementPaymentsResponse
|
|
{
|
|
public bool $success = false;
|
|
public string $message = '';
|
|
|
|
public int $booked = 0;
|
|
|
|
/** Übersprungen, weil älter als die zuletzt erfasste Zahlung der Person. */
|
|
public int $skipped = 0;
|
|
|
|
/** Nicht verarbeitbar (unbekannte Anmeldung, unbrauchbarer Betrag). */
|
|
public int $failed = 0;
|
|
}
|