ItemOtherCharges

    ''' <summary>
    ''' QuickBooks connection needs to be open first.
    ''' Get ItemOtherCharge Record Count. Returns number of records in QuickBooks
    ''' In case of error returns: will return -1
    ''' </summary>
    ''' <param name="MaxReturned">max number of records to get</param>
    ''' <param name="errorMsg">returned error message</param>
Public Function GetItemOtherChargeRecordCount(Optional ByVal MaxReturned As Integer = 0, Optional ByRef errorMsg As String = "") As Integer

   ''' <summary>
    ''' QuickBooks connection needs to be open first.
    ''' Get All ItemOtherCharge. Returns List(Of ItemOtherCharge)
    ''' In case of error returns: new List(Of ItemOtherCharge)
    ''' NOTE: IF YOU HAVE TOO MANY RECORDS GET ItemOtherCharge BY DATERANGE
    ''' </summary>
    ''' <param name="ActiveStatus">qbActiveStatus enum. Values (ActiveOnly [DEFAULT], InactiveOnly, All)</param>
    ''' <param name="MaxReturned">max number of records to get</param>
    ''' <param name="errorMsg">returned error message</param>
Public Function GetAllItemOtherCharge(Optional ByVal ActiveStatus As qbActiveStatus = qbActiveStatus.All, Optional ByVal MaxReturned As Integer = 0, Optional ByRef errorMsg As String = "") As List(Of ItemOtherCharge)

   ''' <summary>
    ''' QuickBooks connection needs to be open first.
    ''' Get ItemOtherCharge By ListIDs. Returns List(Of ItemOtherCharge)
    ''' In case of error returns: new List(Of ItemOtherCharge)
    ''' NOTE: IF YOU HAVE TOO MANY RECORDS GET ItemOtherCharge BY DATERANGE
    ''' </summary>
    ''' <param name="ListIDs">ListIDs of the ItemOtherCharge. If it is one ListIDs, just add one ListID to the List(Of String)</param>
    ''' <param name="MaxReturned">max number of records to get</param>
    ''' <param name="errorMsg">returned error message</param>
Public Function GetItemOtherChargeByListIDs(ByVal ListIDs As List(Of String), Optional ByVal MaxReturned As Integer = 0, Optional ByRef errorMsg As String = "") As List(Of ItemOtherCharge)

   ''' <summary>
    ''' QuickBooks connection needs to be open first.
    ''' Get ItemOtherCharge By FullNames. Returns List(Of ItemOtherCharge)
    ''' In case of error returns: new List(Of ItemOtherCharge)
    ''' NOTE: IF YOU HAVE TOO MANY RECORDS GET ItemOtherCharge BY DATERANGE
    ''' </summary>
    ''' <param name="FullNames">FullNames of the ItemOtherCharge. If it is one FullNames, just add one FullNames to the List(Of String)</param>
    ''' <param name="MaxReturned">max number of records to get</param>
    ''' <param name="errorMsg">returned error message</param>
Public Function GetItemOtherChargeByFullNames(ByVal FullNames As List(Of String), Optional ByVal MaxReturned As Integer = 0, Optional ByRef errorMsg As String = "") As List(Of ItemOtherCharge)

    ''' <summary>
    ''' QuickBooks connection needs to be open first.
    ''' Get ItemOtherCharges By DateRange. Returns List(Of ItemOtherCharge)
    ''' In case of error returns: new List(Of ItemOtherCharge)
    ''' </summary>
    ''' <param name="FromModifiedDate">FromDate</param>
    ''' <param name="ToModifiedDate">ToDate</param>
    ''' <param name="MaxReturned">max number of records to get</param>
    ''' <param name="errorMsg">returned error message</param>
Public Function GetItemOtherChargesByDateRange(ByVal FromModifiedDate As DateTime, ByVal ToModifiedDate As DateTime, Optional ByVal MaxReturned As Integer = 0, Optional ByRef errorMsg As String = "") As List(Of ItemOtherCharge)

   ''' <summary>
    ''' QuickBooks connection needs to be open first.
    ''' Get ItemOtherCharges By Name. Returns List(Of ItemOtherCharge)
    ''' In case of error returns: new List(Of ItemOtherCharge)
    ''' </summary>
    ''' <param name="Name">ItemOtherCharge Name</param>
    ''' <param name="MatchCriterion">qbMatchCriterion enum. Values(StartsWith, Contains, EndsWith)</param>
    ''' <param name="MaxReturned">max number of records to get</param>
    ''' <param name="errorMsg">returned error message</param>
Public Function GetItemOtherChargeByName(ByVal Name As String, ByVal MatchCriterion As qbMatchCriterion, Optional ByVal MaxReturned As Integer = 0, Optional ByRef errorMsg As String = "") As List(Of ItemOtherCharge)

    ''' <summary>
    ''' QuickBooks connection needs to be open first.
    ''' Get ItemOtherCharges By NameRange. Returns List(Of ItemOtherCharge)
    ''' In case of error returns: new List(Of ItemOtherCharge)
    ''' </summary>
    ''' <param name="FromName">FromName value</param>
    ''' <param name="ToName">ToName value.</param>
    ''' <param name="MaxReturned">max number of records to get</param>
    ''' <param name="errorMsg">returned error message</param>
Public Function GetItemOtherChargeByNameRange(ByVal FromName As String, ByVal ToName As String, Optional ByVal MaxReturned As Integer = 0, Optional ByRef errorMsg As String = "") As List(Of ItemOtherCharge)

   ''' <summary>
    ''' QuickBooks connection needs to be open first.
    ''' Get ItemOtherChargeBy Class ListIDs. Returns List(Of ItemOtherCharge)
    ''' In case of error returns: new List(Of ItemOtherCharge)
    ''' </summary>
    ''' <param name="ListIDs">Entities ListIDs</param>
    ''' <param name="MaxReturned">max number of records to get</param>
    ''' <param name="errorMsg">returned error message</param>
Public Function GetItemOtherChargeByClassListIDs(ByVal ListIDs As List(Of String), Optional ByVal MaxReturned As Integer = 0, Optional ByRef errorMsg As String = "") As List(Of ItemOtherCharge)

    ''' <summary>
    ''' QuickBooks connection needs to be open first.
    ''' Get ItemOtherChargeBy Class FullNames. Returns List(Of ItemOtherCharge)
    ''' In case of error returns: new List(Of ItemOtherCharge)
    ''' </summary>
    ''' <param name="FullNames">Entities FullNames</param>
    ''' <param name="MaxReturned">max number of records to get</param>
    ''' <param name="errorMsg">returned error message</param>
Public Function GetItemOtherChargeByClassFullNames(ByVal FullNames As List(Of String), Optional ByVal MaxReturned As Integer = 0, Optional ByRef errorMsg As String = "") As List(Of ItemOtherCharge)

   ''' <summary>
    ''' QuickBooks connection needs to be open first.
    ''' Get ItemOtherChargeBy Class ListIDWithChildren. Returns List(Of ItemOtherCharge)
    ''' In case of error returns: new List(Of ItemOtherCharge)
    ''' </summary>
    ''' <param name="ListIDWithChildren">Class ListIDWithChildren</param>
    ''' <param name="MaxReturned">max number of records to get</param>
    ''' <param name="errorMsg">returned error message</param>
Public Function GetItemOtherChargeByClassListIDWithChildren(ByVal ListIDWithChildren As String, Optional ByVal MaxReturned As Integer = 0, Optional ByRef errorMsg As String = "") As List(Of ItemOtherCharge)

   ''' <summary>
    ''' QuickBooks connection needs to be open first.
    ''' Get ItemOtherChargeBy Class FullNameWithChildren. Returns List(Of ItemOtherCharge)
    ''' In case of error returns: new List(Of ItemOtherCharge)
    ''' </summary>
    ''' <param name="FullNameWithChildren">Class FullNameWithChildren</param>
    ''' <param name="MaxReturned">max number of records to get</param>
    ''' <param name="errorMsg">returned error message</param>
Public Function GetItemOtherChargeByClassFullNameWithChildren(ByVal FullNameWithChildren As String, Optional ByVal MaxReturned As Integer = 0, Optional ByRef errorMsg As String = "") As List(Of ItemOtherCharge)

   ''' <summary>
    ''' It will delete the record from QuickBooks.
    ''' Once deleted, there is no way to retrieve
    ''' </summary>
    ''' <param name="ListID">to add new records to QB set ListID to a temporal one</param>
    ''' <param name="errorMsg">returned error message</param>
Public Function DeleteItemOtherChargeFromQuickBooksByListID(ByVal ListID As String, Optional ByRef errorMsg As String = "") As Boolean

   ''' <summary>
    ''' It will add a new ItemOtherCharge to ItemOtherChargeList.
    ''' CustomField1-CustomField15: Fotmat[CustomFieldName:CustomFieldValue]
    ''' </summary>
    ''' <param name="_ListID">to add new records to QB set ListID to a temporal one</param>
    ''' <param name="_Operation">set to empty, update, add, or delete</param>
    ''' <param name="errorMsg">returned error message</param>
Public Function AddToItemOtherChargeList(_ListID As String, _Name As String, Optional ByVal _TimeCreated As String = "", Optional ByVal _TimeModified As String = "", Optional ByVal _EditSequence As String = "", Optional ByVal _FullName As String = "", Optional ByVal _BarCodeValue As String = "", Optional ByVal _AssignEvenIfUsed As String = "", Optional ByVal _AllowOverride As String = "", Optional ByVal _IsActive As String = "", Optional ByVal _ClassRef_ListID As String = "", Optional ByVal _ClassRef_FullName As String = "", Optional ByVal _ParentRef_ListID As String = "", Optional ByVal _ParentRef_FullName As String = "", Optional ByVal _Sublevel As String = "", Optional ByVal _IsTaxIncluded As String = "", Optional ByVal _SalesTaxCodeRef_ListID As String = "", Optional ByVal _SalesTaxCodeRef_FullName As String = "", Optional ByVal _SpecialItemType As String = "", Optional ByVal _CustomField1 As String = "", Optional ByVal _CustomField2 As String = "", Optional ByVal _CustomField3 As String = "", Optional ByVal _CustomField4 As String = "", Optional ByVal _CustomField5 As String = "", Optional ByVal _CustomField6 As String = "", Optional ByVal _CustomField7 As String = "", Optional ByVal _CustomField8 As String = "", Optional ByVal _CustomField9 As String = "", Optional ByVal _CustomField10 As String = "", Optional ByVal _CustomField11 As String = "", Optional ByVal _CustomField12 As String = "", Optional ByVal _CustomField13 As String = "", Optional ByVal _CustomField14 As String = "", Optional ByVal _CustomField15 As String = "", Optional ByVal _ExternalGUID As String = "", Optional ByVal _UserData As String = "", Optional ByVal _Operation As String = "", Optional ByRef errorMsg As String = "") As ItemOtherCharge

Powered by BetterDocs