[IMP] add note field in parserlib

This commit is contained in:
Stéphane Bidoul
2015-07-20 18:54:30 +02:00
parent aaf375018a
commit eb2693c1d7

View File

@@ -98,6 +98,14 @@ class BankTransaction(dict):
"""property setter"""
self['account_number'] = remote_account
@property
def note(self):
return self['note']
@note.setter
def note(self, note):
self['note'] = note
def __init__(self):
"""Define and initialize attributes.