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

Public Member Functions

 __init__ (self, book=None, id=None, owner=None, name=None, instance=None)
 

Detailed Description

Definition at line 74 of file gnucash_business.py.

Constructor & Destructor Documentation

◆ __init__()

python.gnucash_business.Job.__init__ (   self,
  book = None,
  id = None,
  owner = None,
  name = None,
  instance = None 
)

Reimplemented from python.gnucash_business.GnuCashBusinessEntity.

Definition at line 77 of file gnucash_business.py.

78 instance=None):
79 if instance == None:
80 if book==None or id==None or owner==None:
81 raise Exception(
82 "you must call Job.__init__ "
83 "with either a book, id, and owner or an existing "
84 "low level swig proxy in the argument instance")
85 GnuCashCoreClass.__init__(self, book)
86 self.SetID(id)
87 self.SetOwner(owner)
88 if name != None:
89 self.SetName(name)
90 else:
91 GnuCashCoreClass.__init__(self, instance=instance)
92

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