mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-30 16:22:58 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			78 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Invoice Ninja (https://invoiceninja.com).
 | |
|  *
 | |
|  * @link https://github.com/invoiceninja/invoiceninja source repository
 | |
|  *
 | |
|  * @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
 | |
|  *
 | |
|  * @license https://www.elastic.co/licensing/elastic-license
 | |
|  */
 | |
| 
 | |
| namespace App\Helpers\Bank\Yodlee\Transformer;
 | |
| 
 | |
| /**
 | |
| "date": "string",
 | |
| "sourceId": "string",
 | |
| "symbol": "string",
 | |
| "cusipNumber": "string",
 | |
| "highLevelCategoryId": 0,
 | |
| "detailCategoryId": 0,
 | |
| "description": {},
 | |
| "memo": "string",
 | |
| "settleDate": "string",
 | |
| "type": "string",
 | |
| "intermediary": [],
 | |
| "baseType": "CREDIT",
 | |
| "categorySource": "SYSTEM",
 | |
| "principal": {},
 | |
| "lastUpdated": "string",
 | |
| "interest": {},
 | |
| "price": {},
 | |
| "commission": {},
 | |
| "id": 0,
 | |
| "merchantType": "string",
 | |
| "amount": {
 | |
| "amount": 0,
 | |
| "convertedAmount": 0,
 | |
| "currency": "USD",
 | |
| "convertedCurrency": "USD"
 | |
| },
 | |
| "checkNumber": "string",
 | |
| "isPhysical": true,
 | |
| "quantity": 0,
 | |
| "valoren": "string",
 | |
| "isManual": true,
 | |
| "merchant": {
 | |
| "website": "string",
 | |
| "address": {},
 | |
| "contact": {},
 | |
| "categoryLabel": [],
 | |
| "coordinates": {},
 | |
| "name": "string",
 | |
| "id": "string",
 | |
| "source": "YODLEE",
 | |
| "logoURL": "string"
 | |
| },
 | |
| "sedol": "string",
 | |
| "transactionDate": "string",
 | |
| "categoryType": "TRANSFER",
 | |
| "accountId": 0,
 | |
| "createdDate": "string",
 | |
| "sourceType": "AGGREGATED",
 | |
| "CONTAINER": "bank",
 | |
| "postDate": "string",
 | |
| "parentCategoryId": 0,
 | |
| "subType": "OVERDRAFT_CHARGE",
 | |
| "category": "string",
 | |
| "runningBalance": {},
 | |
| "categoryId": 0,
 | |
| "holdingDescription": "string",
 | |
| "isin": "string",
 | |
| "status": "POSTED"
 | |
|  */
 | |
| 
 | |
| class ExpenseTransformer
 | |
| {
 | |
| }
 |