We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b4a8eb commit 1cf37f1Copy full SHA for 1cf37f1
src/apify/_models.py
@@ -46,7 +46,7 @@ class ActorRunMeta(BaseModel):
46
class ActorRunStats(BaseModel):
47
__model_config__ = ConfigDict(populate_by_name=True)
48
49
- input_body_len: Annotated[int, Field(alias='inputBodyLen')]
+ input_body_len: Annotated[int | None, Field(alias='inputBodyLen')] = None
50
restart_count: Annotated[int, Field(alias='restartCount')]
51
resurrect_count: Annotated[int, Field(alias='resurrectCount')]
52
mem_avg_bytes: Annotated[float | None, Field(alias='memAvgBytes')] = None
0 commit comments