Adding ERA Logic (#6432)
[openemr.git] / interface / modules / custom_modules / oe-module-claimrev-connect / src / FileSearchModel.php
blobd22e932fc0e4d58944bd4c62eb47b16c73824b08
1 <?php
3 /**
5 * @package OpenEMR
6 * @link http://www.open-emr.org
8 * @author Brad Sharp <brad.sharp@claimrev.com>
9 * @copyright Copyright (c) 2022 Brad Sharp <brad.sharp@claimrev.com>
10 * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3
13 namespace OpenEMR\Modules\ClaimRevConnector;
15 class FileSearchModel
17 public $accountNumber = "";
18 public int $fileStatus = 3;
19 public ?string $ediType = "";
20 public ?string $ediVersion = "";
21 public ?string $payerNumber = "";
22 public ?string $fileId = "";
23 public $receivedDateStart;
24 public $receivedDateEnd;
26 public function __construct()