property#

class besser.bot.core.property.Property(section, name, property_type, default_value)[source]#

Bases: object

A bot property.

Parameters:
  • section (str) – the property section

  • name (str) – the property name

  • property_type (type) – the property type

  • default_value (Any) – the property default value

section#

The property section

Type:

str

name#

The property name

Type:

str

type#

The property type

Type:

type

default_value#

The property default value

Type:

Any