whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
quickbooks
/
v3-php-sdk
/
src
/
DataService
/
Upload File:
files >> //home/kckglobal/www/portal/vendor/quickbooks/v3-php-sdk/src/DataService/IntuitCDCResponse.php
<?php namespace QuickBooksOnline\API\DataService; /** * This class processes the CDC request. */ class IntuitCDCResponse { /** * list of entities. * @var array entities */ public $entities; /** * IdsException in case of ResponseType is exception. * @var array exceptions */ public $exceptions; /** * Initializes a new instance of the IntuitBatchResponse class. */ public function __construct() { $this->entities = array(); $this->exceptions = array(); } /** * Gets the List of entity value with particular key * @var string key */ public function getEntity($key) { foreach ($this->entities as $entityKey => $entityVal) { if ($entityKey==$key) { return $entityVal; } } return null; } }
Copyright ©2021 || Defacer Indonesia