12 lines
354 B
Python
12 lines
354 B
Python
import teal.marshmallow
|
|
from marshmallow import fields as mf
|
|
|
|
from ereuse_devicehub.resources.schemas import Thing
|
|
|
|
|
|
class Inventory(Thing):
|
|
id = mf.String(dump_only=True)
|
|
name = mf.String(dump_only=True)
|
|
tag_provider = teal.marshmallow.URL(dump_only=True, data_key='tagProvider')
|
|
tag_token = mf.UUID(dump_only=True, data_key='tagToken')
|