17 lines
301 B
PHP
17 lines
301 B
PHP
<?php
|
|
|
|
namespace App\Domains\ParticipantRefund\Actions\CreateRefundDocument;
|
|
|
|
class CreateRefundDocumentResponse
|
|
{
|
|
public bool $success = false;
|
|
|
|
public string $documentNumber = '';
|
|
|
|
public string $filename = '';
|
|
|
|
public string $pdfContent = '';
|
|
|
|
public ?string $message = null;
|
|
}
|