Completed
Push — master ( b6f8ef...f3cde1 )
by Jochen
16:59
created

byceps.blueprints.api.tourney.match.schemas   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 15
rs 10
c 0
b 0
f 0
wmc 0
1
"""
2
byceps.blueprints.api.tourney.match.schemas
3
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4
5
:Copyright: 2006-2019 Jochen Kupperschmidt
6
:License: Modified BSD, see LICENSE for details.
7
"""
8
9
from marshmallow import fields, Schema
10
11
12
class CreateMatchCommentRequest(Schema):
13
    creator_id = fields.UUID()
14
    body = fields.Str()
15