mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-24 02:14:21 -04:00
* Refactor company properties to be presented from settings object instead of company properties * Working on Email Tests * Working on emails * Working on email templats * Include text version of email * Refactor Email template builder into trait' * Fix for custom_value4 * Refactor payment_date -> date && payment_type_id -> type_id * expose paymentables to API * expose paymentables to API * Implement a next_send_date field in invoice/quote tables to allow control over reminder scheduling * Add custom_values to users,documents and company_gateways tables
29 lines
505 B
PHP
29 lines
505 B
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\DataMapper;
|
|
|
|
class PaymentTransaction
|
|
{
|
|
|
|
public $transaction_id;
|
|
|
|
public $gateway_response;
|
|
|
|
public $account_gateway_id;
|
|
|
|
public $type_id;
|
|
|
|
public $status; // prepayment|payment|response|completed
|
|
|
|
public $invoices;
|
|
|
|
} |