Skip to content

Commit 8f906d7

Browse files
committed
Fix names
1 parent 0048d3e commit 8f906d7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/apify_client/_models.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# generated by datamodel-codegen:
22
# filename: openapi.json
3-
# timestamp: 2025-12-21T10:07:13+00:00
3+
# timestamp: 2025-12-23T12:55:37+00:00
44

55
from __future__ import annotations
66

@@ -1233,7 +1233,7 @@ class KeyValueStoreStats(BaseModel):
12331233

12341234
class KeyValueStore(BaseModel):
12351235
id: Annotated[str, Field(examples=['WkzbQMuFYuamGv3YF'])]
1236-
name: Annotated[str, Field(examples=['d7b9MDYsbtX5L7XAj'])]
1236+
name: Annotated[str | None, Field(examples=['d7b9MDYsbtX5L7XAj'])] = None
12371237
user_id: Annotated[str | None, Field(alias='userId', examples=['BPWDBd7Z9c746JAnF'])] = None
12381238
username: Annotated[str | None, Field(examples=['janedoe'])] = None
12391239
created_at: Annotated[str, Field(alias='createdAt', examples=['2019-12-12T07:34:14.202Z'])]
@@ -1357,7 +1357,7 @@ class DatasetStats(BaseModel):
13571357

13581358
class Dataset(BaseModel):
13591359
id: Annotated[str, Field(examples=['WkzbQMuFYuamGv3YF'])]
1360-
name: Annotated[str, Field(examples=['d7b9MDYsbtX5L7XAj'])]
1360+
name: Annotated[str | None, Field(examples=['d7b9MDYsbtX5L7XAj'])] = None
13611361
user_id: Annotated[str, Field(alias='userId', examples=['wRsJZtadYvn4mBZmm'])]
13621362
created_at: Annotated[str, Field(alias='createdAt', examples=['2019-12-12T07:34:14.202Z'])]
13631363
modified_at: Annotated[str, Field(alias='modifiedAt', examples=['2019-12-13T08:36:13.202Z'])]

0 commit comments

Comments
 (0)