We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfeb550 commit 03c666aCopy full SHA for 03c666a
1 file changed
src/apify_client/_models.py
@@ -1,13 +1,13 @@
1
# generated by datamodel-codegen:
2
# filename: openapi.json
3
-# timestamp: 2025-12-26T10:41:32+00:00
+# timestamp: 2025-12-28T20:02:06+00:00
4
5
from __future__ import annotations
6
7
from enum import Enum, IntEnum
8
from typing import Annotated, Any, Literal
9
10
-from pydantic import AwareDatetime, BaseModel, Field
+from pydantic import AwareDatetime, BaseModel, ConfigDict, Field
11
12
13
class PaginationResponse(BaseModel):
@@ -1623,6 +1623,9 @@ class BatchOperationResponse(BaseModel):
1623
1624
1625
class UserData(BaseModel):
1626
+ model_config = ConfigDict(
1627
+ extra='allow',
1628
+ )
1629
label: Annotated[str | None, Field(examples=['DETAIL'])] = None
1630
image: Annotated[str | None, Field(examples=['https://picserver1.eu'])] = None
1631
0 commit comments