Model for the overall wiki structure.
| 77 | |
| 78 | |
| 79 | class WikiStructureModel(BaseModel): |
| 80 | """ |
| 81 | Model for the overall wiki structure. |
| 82 | """ |
| 83 | id: str |
| 84 | title: str |
| 85 | description: str |
| 86 | pages: List[WikiPage] |
| 87 | sections: Optional[List[WikiSection]] = None |
| 88 | rootSections: Optional[List[str]] = None |
| 89 | |
| 90 | class WikiCacheData(BaseModel): |
| 91 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected