mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 13:42:49 +01:00
75 lines
2.1 KiB
PHP
75 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Helpers\Bank\Yodlee\Transformer;
|
|
|
|
/**
|
|
[account] => Array
|
|
(
|
|
[0] => stdClass Object
|
|
(
|
|
[CONTAINER] => bank
|
|
[providerAccountId] => 11308693
|
|
[accountName] => My CD - 8878
|
|
[accountStatus] => ACTIVE
|
|
[accountNumber] => xxxx8878
|
|
[aggregationSource] => USER
|
|
[isAsset] => 1
|
|
[balance] => stdClass Object
|
|
(
|
|
[currency] => USD
|
|
[amount] => 49778.07
|
|
)
|
|
|
|
[id] => 12331861
|
|
[includeInNetWorth] => 1
|
|
[providerId] => 18769
|
|
[providerName] => Dag Site Captcha
|
|
[isManual] =>
|
|
[currentBalance] => stdClass Object
|
|
(
|
|
[currency] => USD
|
|
[amount] => 49778.07
|
|
)
|
|
|
|
[accountType] => CD
|
|
[displayedName] => LORETTA
|
|
[createdDate] => 2022-07-28T06:55:33Z
|
|
[lastUpdated] => 2022-07-28T06:56:09Z
|
|
[dataset] => Array
|
|
(
|
|
[0] => stdClass Object
|
|
(
|
|
[name] => BASIC_AGG_DATA
|
|
[additionalStatus] => AVAILABLE_DATA_RETRIEVED
|
|
[updateEligibility] => ALLOW_UPDATE
|
|
[lastUpdated] => 2022-07-28T06:55:50Z
|
|
[lastUpdateAttempt] => 2022-07-28T06:55:50Z
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
)
|
|
*/
|
|
|
|
class AccountTransformer
|
|
{
|
|
|
|
public static function transform(array $account)
|
|
{
|
|
return [
|
|
];
|
|
}
|
|
}
|
|
|
|
|