02_dp_checkbox - fasteiner/Notion GitHub Wiki

DatabaseProperty: Checkbox

API Reference

classDiagram
    class notion_checkbox_database_property {
        [hashtable] $checkbox
        ConvertFromObject()
    }
    `DatabasePropertiesBase` --|> `notion_checkbox_database_property`:inherits

As this is only to let the database know that the property is a checkbox, the only thing that is needed is the name of the property. This is stored in a hashtable, which is the base class for all database properties.

Related Classes