2019-09-09 05:27:16 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-09-09 05:27:16 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-09-09 05:27:16 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-09-09 05:27:16 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\DataMapper;
|
|
|
|
|
|
|
|
class PaymentTransaction
|
|
|
|
{
|
2019-12-30 22:59:12 +01:00
|
|
|
public $transaction_id;
|
2019-09-09 05:27:16 +02:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
public $gateway_response;
|
2019-09-09 05:27:16 +02:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
public $account_gateway_id;
|
2019-09-09 05:27:16 +02:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
public $type_id;
|
2019-09-09 05:27:16 +02:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
public $status; // prepayment|payment|response|completed
|
2019-09-09 05:27:16 +02:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
public $invoices;
|
|
|
|
}
|