mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-26 16:04:05 +00:00
Recipient Bank Details to follow payment overriding the default attached to Booking
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
namespace App\Classes\Modules\Banks\DataTransferObjects;
|
||||
|
||||
use App\Classes\General\Interfaces\DataTransferObject;
|
||||
|
||||
class BankMetadataObject implements DataTransferObject
|
||||
{
|
||||
|
||||
/** @var int */
|
||||
private $transaction_id;
|
||||
|
||||
/**
|
||||
* BankMetadataObject constructor.
|
||||
* @param int $transaction_id
|
||||
*/
|
||||
public function __construct(int $transaction_id)
|
||||
{
|
||||
$this->transaction_id = $transaction_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return int
|
||||
*/
|
||||
public function getTransactionId(): int
|
||||
{
|
||||
return $this->transaction_id;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user