Merge pull request #22619 from demeritcowboy/wrong-tz
[civicrm-core.git] / Civi / Api4 / FinancialTrxn.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11 namespace Civi\Api4;
12
13 /**
14 * Financial Trxn entity.
15 *
16 * Financial transactions are low level accounting entries.
17 * They include, but are not limited to, payments.
18 *
19 * If your interest is really in payments you should use that api.
20 *
21 * @see https://docs.civicrm.org/dev/en/latest/financial/financialentities/#financial-transactions
22 *
23 * @searchable secondary
24 * @since 5.40
25 * @package Civi\Api4
26 */
27 class FinancialTrxn extends Generic\DAOEntity {
28 use Generic\Traits\ReadOnlyEntity;
29
30 }