Files
shipping-portal/app/Classes/Modules/Jobs/DataTransferObjects/ShowBillplzPaymentStatusV2CommandObject.php
T
2023-12-28 01:58:49 +08:00

27 lines
479 B
PHP

<?php
namespace App\Classes\Modules\Jobs\DataTransferObjects;
use App\Classes\General\Interfaces\DataTransferObject;
class ShowBillplzPaymentStatusV2CommandObject implements DataTransferObject
{
/** @var string */
private $billplzId;
public function __construct(string $billplzId)
{
$this->billplzId = $billplzId;
}
/**
* @return string
*/
public function getBillplzId(): string
{
return $this->billplzId;
}
}