This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
devicehub-teal/ereuse_devicehub/resources/tradedocument/__init__.py

11 lines
324 B
Python
Raw Normal View History

2021-05-13 11:35:46 +00:00
from teal.resource import Converters, Resource
from ereuse_devicehub.resources.tradedocument import schemas
from ereuse_devicehub.resources.tradedocument.views import DocumentView
class TradeDocumentDef(Resource):
SCHEMA = schemas.Document
VIEW = DocumentView
AUTH = True
ID_CONVERTER = Converters.string