%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/Data/ |
Upload File : |
<?php
namespace QuickBooksOnline\API\Data;
/**
* @xmlNamespace http://schema.intuit.com/finance/v3
* @xmlType ItemLineDetail
* @xmlName IPPSalesItemLineDetail
* @var IPPSalesItemLineDetail
* @xmlDefinition
Product: ALL
Description: SalesItem detail for a
transaction line.
*/
class IPPSalesItemLineDetail
extends IPPItemLineDetail {
/**
* Initializes this object, optionally with pre-defined property values
*
* Initializes this object and it's property members, using the dictionary
* of key/value pairs passed as an optional argument.
*
* @param dictionary $keyValInitializers key/value pairs to be populated into object's properties
* @param boolean $verbose specifies whether object should echo warnings
*/
public function __construct($keyValInitializers=array(), $verbose=FALSE)
{
foreach($keyValInitializers as $initPropName => $initPropVal)
{
if (property_exists('IPPSalesItemLineDetail',$initPropName) || property_exists('QuickBooksOnline\API\Data\IPPSalesItemLineDetail',$initPropName))
{
$this->{$initPropName} = $initPropVal;
}
else
{
if ($verbose)
echo "Property does not exist ($initPropName) in class (".get_class($this).")";
}
}
}
/**
* @Definition
Product: ALL
Description: Date when the service
is performed.
* @xmlType element
* @xmlNamespace http://schema.intuit.com/finance/v3
* @xmlMinOccurs 0
* @xmlName ServiceDate
* @var string
*/
public $ServiceDate;
/**
* @Definition
Product: QBO
Description: Indicates the total
amount of line item including tax.
* @xmlType element
* @xmlNamespace http://schema.intuit.com/finance/v3
* @xmlMinOccurs 0
* @xmlName TaxInclusiveAmt
* @var float
*/
public $TaxInclusiveAmt;
/**
* @Definition
Product: QBO
Description: Indicates the discount rate that is applied on this line.
* @xmlType element
* @xmlNamespace http://schema.intuit.com/finance/v3
* @xmlMinOccurs 0
* @xmlName DiscountRate
* @var float
*/
public $DiscountRate;
/**
* @Definition
Product: QBO
Description: Indicates the discount amount that is applied on this line.
* @xmlType element
* @xmlNamespace http://schema.intuit.com/finance/v3
* @xmlMinOccurs 0
* @xmlName DiscountAmt
* @var float
*/
public $DiscountAmt;
/**
* @Definition
Product: QBO
Description: Use the DeferredRevenue property to indicate that the goods/services sold
have not yet been delivered to the customer, and therefore not appropriate for the
accounting engine to book as Revenue for accounting. The most typical example would be
inventory items that have not yet been shipped. The accounting engine will credit a
liability account instead of revenue account. Later a follow on transaction must be
entered when the sale is fulfilled, and then the accounting engine will debit the
liability account and credit the revenue account.
* @xmlType element
* @xmlNamespace http://schema.intuit.com/finance/v3
* @xmlMinOccurs 0
* @xmlName DeferredRevenue
* @var boolean
*/
public $DeferredRevenue;
/**
* @Definition
Product: ALL
Description: Internal use only:
extension place holder for SalesItemDetail
* @xmlType element
* @xmlNamespace http://schema.intuit.com/finance/v3
* @xmlMinOccurs 0
* @xmlName SalesItemLineDetailEx
* @var com\intuit\schema\finance\v3\IPPIntuitAnyType
*/
public $SalesItemLineDetailEx;
} // end class IPPSalesItemLineDetail