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.
|
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')
|