9 lines
251 B
Python
9 lines
251 B
Python
|
from apiflask import Schema
|
||
|
from apiflask import fields
|
||
|
|
||
|
|
||
|
class InteractionIn(Schema):
|
||
|
category = fields.Integer()
|
||
|
receiver_id = fields.String()
|
||
|
related_party_id = fields.String(allow_none=True)
|
||
|
comment = fields.String(allow_none=True)
|