Repository URL to install this package:
|
Version:
0.1.0 ▾
|
from __future__ import unicode_literals
from .base import Model
class BankAccount(Model):
attribute_names = [
'bank',
# string Name of bank
'sortCode',
# string Bank sort code
'count',
# integer Number of accounts
'id',
# string Identifier for bank account
]