feat: include bank account in booking data

This commit is contained in:
Björn Fromme
2025-03-27 11:41:30 +01:00
parent 3d9177f979
commit e4cea1e47d
4 changed files with 32 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
<?php
namespace App\BusProNet\Model;
class BankAccount
{
public ?string $iban = null;
public ?string $bic = null;
public ?string $bankName = null;
public ?string $holder = null;
}
+1
View File
@@ -24,6 +24,7 @@ class Booking
public ?string $paymentId = null;
public ?string $paymentType = null;
public ?string $paymentLabel = null;
public ?BankAccount $bankAccount = null;
public array $participantsStatus = [];
public array $participants = [];
public array $transportationServices = [];