Skip to content

Commit 126a862

Browse files
authored
fix: field alias in BatchRequestsOperationResponse (#485)
1 parent afcc278 commit 126a862

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/crawlee/base_storage_client/_models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ class ProcessedRequest(BaseModel):
201201

202202
model_config = ConfigDict(populate_by_name=True)
203203

204-
id: Annotated[str, Field(alias='id')]
204+
id: Annotated[str, Field(alias='requestId')]
205205
unique_key: Annotated[str, Field(alias='uniqueKey')]
206206
was_already_present: Annotated[bool, Field(alias='wasAlreadyPresent')]
207207
was_already_handled: Annotated[bool, Field(alias='wasAlreadyHandled')]

0 commit comments

Comments
 (0)