GnuCash c935c2f+
Loading...
Searching...
No Matches
Public Member Functions
python.gnucash_business.TaxTable Class Reference
Inheritance diagram for python.gnucash_business.TaxTable:

Public Member Functions

 __init__ (self, book=None, name=None, first_entry=None, instance=None)
 

Detailed Description

Definition at line 97 of file gnucash_business.py.

Constructor & Destructor Documentation

◆ __init__()

python.gnucash_business.TaxTable.__init__ (   self,
  book = None,
  name = None,
  first_entry = None,
  instance = None 
)

Definition at line 98 of file gnucash_business.py.

98 def __init__(self, book=None, name=None, first_entry=None, instance=None):
99 if instance == None:
100 if book==None or name==None or first_entry==None:
101 raise Exception(
102 "you must call TaxTable.__init__ with either a "
103 "book, name, and first_entry, or an existing "
104 "low level swig proxy in the argument instance")
105 GnuCashCoreClass.__init__(self, book)
106 self.SetName(name)
107 self.AddEntry(first_entry)
108 else:
109 GnuCashCoreClass.__init__(self, instance=instance)
110

The documentation for this class was generated from the following file: