Merge pull request #22768 from colemanw/searchKitDedupe
[civicrm-core.git] / Civi / Api4 / FinancialTrxn.php
CommitLineData
70b1f49f 1<?php
70b1f49f 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 */
70b1f49f 11namespace 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 *
aa998597 23 * @searchable secondary
d44cc3cb 24 * @since 5.40
70b1f49f 25 * @package Civi\Api4
26 */
27class FinancialTrxn extends Generic\DAOEntity {
405d086e 28 use Generic\Traits\ReadOnlyEntity;
70b1f49f 29
30}