QuickBooks Integrator 2020 Python Edition

Questions / Feedback?

QBObject Class

Properties   Methods   Events   Configuration Settings   Errors  

A generic QuickBooks object, allowing users to extend the product's functionality.

Syntax

class inqb.QBObject

Remarks

QBObject is implemented for extensibility, and allows the user to extend the functionality of the class set. The class handles the XML parsing and QuickBooks connection, and leaves it to the user to specify the list of properties to include.

QBObject may be used to implement any object supported by version 1.1 of the QuickBooks SDK. For example, it could be used to implement a transaction line item. The full list of objects and their properties is in the SDK documentation; users of QBObject should download and refer to the SDK documentation for this information.

To add an object to QuickBooks, first set object_name to the name of the object being implemented; for example, "ItemService". Then, set object_type to the type of object: "List" for a list item, or "Txn" for a transaction item. Then, specify each property in order using the add_property method. Finally, invoke add.

To get an object, set object_name and object_type as before, and then invoke get. The object's property values may then be inspected using get_property. The object may also be deleted by invoking delete.

The class does not implement any knowledge of QuickBooks business rules, and simply constructs QBXML based on object_name, object_type, and the calls to add_property. If the class is unable to construct valid QBXML it will fail with an error.

The following pseudocode shows how to add a service line item to QuickBooks.


QBObject1.ObjectName = "ItemService"
QBObject1.ObjectType = "Txn"
QBObject1.AddProperty("Name", "Item name here")
QBObject1.AddProperty("SalesOrPurchase",
  "<AccountRef><FullName>Account name here</FullName></AccountRef>")
QBObject1.Add()

Property List


The following is the full list of the properties of the class with short descriptions. Click on the links for further details.

object_nameThe name of the object.
object_typeThe type of the object - generally List or Txn.
qb_connection_stringAn aggregate consisting of various QuickBooks connection properties.
qb_request_aggregateThe request aggregate.
qb_request_idThe Id of the next message to be sent to QuickBooks.
qb_request_modeDefines whether the request is made online or stored offline.
qb_response_aggregateThe last QBXML response aggregate received from QuickBooks.
qbxml_versionThe version of QBXML used in the outgoing message.
result_countThe number of records in the Result arrays.
result_aggregateOne response XML aggregate returned from QuickBooks.
result_obj_nameIndicates which class is used to parse the corresponding Aggregate .
x_child_countNumber of children for the current element.
x_elementThe name of the current element.
x_pathProvides a way to point to a specific element in the document.
x_textThe text of the current element.

Method List


The following is the full list of the methods of the class with short descriptions. Click on the links for further details.

addAdds the record into QuickBooks.
add_propertySets the value of the specified property.
check_request_statusChecks whether or not the specified request was processed by QuickBooks.
close_qb_connectionCloses a persistent connection to QuickBooks.
configSets or retrieves a configuration setting.
deleteDeletes the record from QuickBooks.
getGets a single record from QuickBooks.
get_by_nameGets a single record from QuickBooks.
get_propertyGets the value of the specified property.
has_x_pathDetermines whether a specific element exists in the document.
open_qb_connectionOpens a persistent connection to QuickBooks.
process_queueProcesses the current queue of transactions.
queueAdds a transaction to the queue.
resetResets all properties to their defaults.
reset_queueResets the transaction queue.
send_raw_xmlSends the provided XML string to the QBXML Request Processor.
updateUpdates the entity object in QuickBooks.

Event List


The following is the full list of the events fired by the class with short descriptions. Click on the links for further details.

on_errorInformation about errors during data delivery.
on_ssl_server_authenticationFired after the server presents its certificate to the client.
on_ssl_statusShows the progress of the secure connection.
on_statusShows the progress of the QuickBooks connection.
on_warningFired when a warning occurs.

Configuration Settings


The following is a list of configuration settings for the class with short descriptions. Click on the links for further details.

AuthFlagsConnection Flags (use for QuickBooks Simple Start).
EnforceMaxLengthIndicates whether to enforce max lengths for QB Fields.
GetHighestVersionHighest QBXMLVersion supported by the installed instance of QuickBooks.
GetRequestProcessorDLLVersionReturns the version of the QB Request Processor that is installed on your system.
GetSupportedVersionsReturns a list of QBXMLVersions that are supported by QuickBooks.
IsReadOnlyThis causes the QuickBooks authorization dialog to display text informing the user that its access will be read-only.
PersonalDataPrefWhether the connecting application will require access to personal data such as SSN or credit card information.
QBConnectionModeThe mode of connection to QuickBooks.
QBFileStatusThe status of the company file as it pertains to accepting connections.
QBOpenCompanyFileThe file currently open in QuickBooks.
SSLAcceptServerCertThe SSL certificate being used by the Remote Connector.
SSLAcceptServerCertFileThe SSL certificate file being used by the Remote Connector.
StopOnErrorSpecifies how QuickBooks is to proceed if an error occurs in processing of the current request.
UnattendedModePrefWhether connecting while QuickBooks is closed is required or optional for the user.
WarningCodesA comma-separated list of QuickBooks warning codes that should not result in an exception.
BuildInfoInformation about the product's build.
CodePageThe system code page used for Unicode to Multibyte translations.
LicenseInfoInformation about the current license.
ProcessIdleEventsWhether the class uses its internal event loop to process events when the main thread is idle.
SelectWaitMillisThe length of time in milliseconds the class will wait when DoEvents is called if there are no events to process.
UseInternalSecurityAPITells the class whether or not to use the system security libraries or an internal implementation.

Copyright (c) 2021 /n software inc. - All rights reserved.
QuickBooks Integrator 2020 Python Edition - Version 20.0 [Build 7941]