18 lines
356 B
PHP
18 lines
356 B
PHP
<?php
|
|
|
|
namespace App\Domains\ParticipantRefund\Actions\AcceptRefund;
|
|
|
|
class AcceptRefundResponse
|
|
{
|
|
public bool $success = false;
|
|
|
|
public ?string $message = null;
|
|
|
|
/**
|
|
* Feldbezogene Fehler für das Formular. Schlüssel sind die Feldnamen des Frontends.
|
|
*
|
|
* @var array<string, string>
|
|
*/
|
|
public array $errorTypes = [];
|
|
}
|