/** * Convert this object to a valid qbXML request * * @param string $request The type of request to convert this to (examples: CustomerAddRq, CustomerModRq, CustomerQueryRq) * @param string $version * @param string $locale * @param string $root * @return string */ public function asQBXML($request, $version = null, $locale = null, $root = null) { $this->_cleanup(); return parent::asQBXML($request, $version, $locale, $root); }
/** * * * @param boolean $todo_for_empty_elements A constant, one of: QUICKBOOKS_XML_XML_COMPRESS, QUICKBOOKS_XML_XML_DROP, QUICKBOOKS_XML_XML_PRESERVE * @param string $indent * @param string $root * @return string */ public function asQBXML($request, $todo_for_empty_elements = QUICKBOOKS_OBJECT_XML_DROP, $indent = "\t", $root = null) { $this->_cleanup(); return parent::asQBXML($request, $todo_for_empty_elements, $indent, $root); }
/** * Convert this object to a valid qbXML request * * @param string $request The type of request to convert this to (ARRefundCreditCardAddRq, or ARRefundCreditCardQuery) * @param boolean $todo_for_empty_elements A constant, one of: QUICKBOOKS_XML_XML_COMPRESS, QUICKBOOKS_XML_XML_DROP, QUICKBOOKS_XML_XML_PRESERVE * @param string $indent * @param string $root * @return string */ public function asQBXML($request, $todo_for_empty_elements = NULL, $indent = "\t", $root = null) { $this->_cleanup(); return parent::asQBXML($request, $todo_for_empty_elements, $indent, $root); }
/** * * * @param boolean $todo_for_empty_elements A constant, one of: QUICKBOOKS_XML_XML_COMPRESS, QUICKBOOKS_XML_XML_DROP, QUICKBOOKS_XML_XML_PRESERVE * @param string $indent * @param string $root * @return string */ public function asQBXML($request, $todo_for_empty_elements = QuickBooks_QBXML_Object::XML_DROP, $indent = "\t", $root = null, $parent = null) { $this->_cleanup(); return parent::asQBXML($request, $todo_for_empty_elements, $indent, $root); }
/** * Convert this object to a valid qbXML request * * @param string $request The type of request to convert this to (examples: CustomerAddRq, CustomerModRq, CustomerQueryRq) * @param boolean $todo_for_empty_elements A constant, one of: QUICKBOOKS_XML_XML_COMPRESS, QUICKBOOKS_XML_XML_DROP, QUICKBOOKS_XML_XML_PRESERVE * @param string $indent * @param string $root * @return string */ public function asQBXML($request, $version = null, $locale = null, $root = null) { return parent::asQBXML($request, $version, $locale, $root); }