From e4a07ddb1917c2309468930e6d5e492bf3185bd8 Mon Sep 17 00:00:00 2001 From: Kelly Peilin Chan Date: Sat, 7 Oct 2023 23:37:40 +0800 Subject: [PATCH] chore: fix --- apitable.py/apitable/types/record.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apitable.py/apitable/types/record.py b/apitable.py/apitable/types/record.py index 01940c8..4ad6c40 100644 --- a/apitable.py/apitable/types/record.py +++ b/apitable.py/apitable/types/record.py @@ -9,5 +9,5 @@ class RawRecord(BaseModel): """ id: Optional[str] = Field(alias="recordId") - data: Dict[str, Any] = Field(alias="id") + data: Dict[str, Any] = Field(alias="fields") \ No newline at end of file