| 1 | <?php |
||
| 14 | class C2bConfirmationEvent |
||
| 15 | { |
||
| 16 | use Dispatchable, InteractsWithSockets, SerializesModels; |
||
| 17 | /** |
||
| 18 | * @var MpesaC2bCallback |
||
| 19 | */ |
||
| 20 | public $transaction; |
||
| 21 | /** |
||
| 22 | * @var array |
||
| 23 | */ |
||
| 24 | public $mpesa_response; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * C2BConfirmationEvent constructor. |
||
| 28 | * @param MpesaC2bCallback $c2bCallback |
||
| 29 | * @param array $response |
||
| 30 | */ |
||
| 31 | public function __construct(MpesaC2bCallback $c2bCallback, array $response = []) |
||
| 36 | } |
||
| 37 |