Repository URL to install this package:
|
Version:
0.1.0 ▾
|
from __future__ import unicode_literals
from .base import Model
class Document(Model):
attribute_names = [
'id',
# string Document ID
'last_update',
# dateTime Date of last update
'documentCode',
# string Document code
'date',
# string Date filed
'description',
# string Description of Document Filing
]