feat: include bank account in booking data
This commit is contained in:
@@ -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;
|
||||
}
|
||||
@@ -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 = [];
|
||||
|
||||
Reference in New Issue
Block a user