Skip to content

Commit 4b12ef2

Browse files
authored
fix(chat-api): correct run_id's serialization_alias (#40)
1 parent 3d708c6 commit 4b12ef2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libs/api/hiagent_api/chat_types.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1655,7 +1655,7 @@ class AsyncResumeAppWorkflowRequest(BaseSchema):
16551655
)
16561656
run_id: str = Field(
16571657
description="run id",
1658-
serialization_alias="RunID",
1658+
serialization_alias="RunId",
16591659
)
16601660
input: str = Field(
16611661
description="input json str",
@@ -1771,7 +1771,7 @@ class SyncResumeAppWorkflowRequest(BaseSchema):
17711771
)
17721772
run_id: str = Field(
17731773
description="run id",
1774-
serialization_alias="RunID",
1774+
serialization_alias="RunId",
17751775
)
17761776
input: Optional[str] = Field(
17771777
description="input json str",

0 commit comments

Comments
 (0)