%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin1/vendor/quickbooks/v3-php-sdk/src/Utility/ |
Upload File : |
<?php
namespace QuickBooksOnline\API\Utility;
/**
* Constants whose values do not change.
*/
class UtilityConstants
{
/**
* batch response has single entity
*/
const Entity = 1;
/**
* batch response has more than one enitity.
*/
const Query = 2;
/**
* batch response has exception.
*/
const Exception = 3;
/**
* XPath for errcode tag.
* @var string ERRCODEXPATH
*/
const ERRCODEXPATH = "//errcode";
/**
* XPath for errtext tag.
* @var string ERRTEXTXPATH
*/
const ERRTEXTXPATH = "//errtext";
/**
* XPath for errdetail tag.
* @var string ERRDETAILXPATH
*/
const ERRDETAILXPATH = "//errdetail";
/**
* QDBAPI root element.
* @var string QDBAPI
*/
const QDBAPI = "qdbapi";
/**
* Encoding attribute.
* @var string ENCODINGATTR
*/
const ENCODINGATTR = "encoding";
/**
* Encoding attribute value.
* @var string ENCODINGATTRVALUE
*/
const ENCODINGATTRVALUE = "utf-8";
/**
* UDATA tag.
* @var string UDATA
*/
const UDATA = "udata";
/**
* WehbooksService Path
*/
const WEBHOOKSDIR = "WebhooksService";
}