mightstone.services.wiki.models.WikiListBullet

pydantic model mightstone.services.wiki.models.WikiListBullet

Show JSON schema
{
   "title": "WikiListBullet",
   "type": "object",
   "properties": {
      "level": {
         "default": 0,
         "title": "Level",
         "type": "integer"
      },
      "style": {
         "allOf": [
            {
               "$ref": "#/$defs/WikiListItemStyle"
            }
         ],
         "default": "*"
      }
   },
   "$defs": {
      "WikiListItemStyle": {
         "enum": [
            "*",
            "#",
            ";",
            ":"
         ],
         "title": "WikiListItemStyle",
         "type": "string"
      }
   }
}

Fields:
field level: int = 0
field style: WikiListItemStyle = WikiListItemStyle.BULLET
static from_string(string: str)