whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
quickbooks
/
v3-php-sdk
/
src
/
Data
/
Upload File:
files >> //home/kckglobal/www/portal/vendor/quickbooks/v3-php-sdk/src/Data/IPPSalesItemLineDetail.php
<?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
Copyright ©2021 || Defacer Indonesia