File tree Expand file tree Collapse file tree 1 file changed +0
-14
lines changed
Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -93,19 +93,6 @@ class Example(BaseModel):
9393 )
9494
9595
96- class ExampleList (BaseModel ):
97- """ Represents a paginated list of examples."""
98-
99- model_config = ConfigDict(populate_by_name = True )
100-
101- items: list[Example] = Field(default_factory = list , description = " List of examples" )
102- current_page: int | None = Field(None , description = " Current page number" )
103- total_pages: int | None = Field(None , description = " Total number of pages" )
104- prev_page: int | str | None = Field(None , description = " Previous page number" )
105- next_page: int | str | None = Field(None , description = " Next page number" )
106- total_count: int | None = Field(None , description = " Total number of items" )
107-
108-
10996class ExampleListOptions (BaseModel ):
11097 """ Options for listing examples."""
11198
@@ -333,7 +320,6 @@ __all__ = [
333320 # ... existing exports ...
334321 " Example" ,
335322 " ExampleCreateOptions" ,
336- " ExampleList" ,
337323 " ExampleListOptions" ,
338324 " ExampleStatus" ,
339325 " ExampleUpdateOptions" ,
You can’t perform that action at this time.
0 commit comments