14 lines
323 B
Python
14 lines
323 B
Python
#!/usr/bin/env python3
|
|
from marshmallow import fields
|
|
from marshmallow_sqlalchemy import SQLAlchemyAutoSchema
|
|
from model import SVMDetails
|
|
|
|
|
|
class SVMDetailsSchema(SQLAlchemyAutoSchema):
|
|
|
|
class Meta:
|
|
model = SVMDetails
|
|
include_relationships = True
|
|
load_instance = True
|
|
include_fk = True
|