""" Options: Date: 2025-08-05 01:52:43 Version: 8.0 Tip: To override a DTO option, remove "#" prefix before updating BaseUrl: https://www.asg.com.au/RestApi #GlobalNamespace: #AddServiceStackTypes: True #AddResponseStatus: False #AddImplicitVersion: #AddDescriptionAsComments: True IncludeTypes: GetUncachedPages.* #ExcludeTypes: #DefaultImports: datetime,decimal,marshmallow.fields:*,servicestack:*,typing:*,dataclasses:dataclass/field,dataclasses_json:dataclass_json/LetterCase/Undefined/config,enum:Enum/IntEnum #DataClass: #DataClassJson: """ import datetime import decimal from marshmallow.fields import * from servicestack import * from typing import * from dataclasses import dataclass, field from dataclasses_json import dataclass_json, LetterCase, Undefined, config from enum import Enum, IntEnum @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class PageProxy: title: Optional[str] = None parent_pages_titles: Optional[str] = None workflow_status: Optional[str] = None has_draft_newer_than_published: bool = False @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class UncachedPagesProxy: not_cached_pages: Optional[List[PageProxy]] = None count_all_sites: int = 0 count_current_site: int = 0 # @Route("/diagnostics/uncached-pages", "GET") @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class GetUncachedPages(IReturn[UncachedPagesProxy]): count_only: bool = False skip: int = 0 take: int = 0 site_root_node_id: Optional[str] = None