diff options
-rw-r--r-- | src/models/properties.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/models/properties.rs b/src/models/properties.rs index cc59907..37c1a4e 100644 --- a/src/models/properties.rs +++ b/src/models/properties.rs @@ -79,6 +79,7 @@ pub enum PropertyConfiguration { /// See https://developers.notion.com/reference/database#date-configuration Date { id: PropertyId }, /// Represents a File Property - /// See https://developers.notion.com/reference/database#date-configuration - File { id: PropertyId }, + /// See https://developers.notion.com/reference/database#file-configuration + /// Documentation issue: docs claim type name is `file` but it's is in fact `files` + Files { id: PropertyId }, } |