Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1# External Schemas 

2from src import ma 

3 

4from src.model import ExternalModel 

5from src.utils import SQLAlchemyAutoSchema 

6 

7from src.utils import DTOSchema 

8 

9 

10class ExternalMeta: 

11 model = ExternalModel 

12 

13 

14class ExternalBase(SQLAlchemyAutoSchema): 

15 class Meta(ExternalMeta): 

16 fields = ("service_id", "service_name")