model.state_variables#
Definition of State Variables, their types, and default values.
By using a dataclass to represent the State Variables: * We can use types for Python type hints * Set default values * Ensure that all State Variables are initialized
Classes
|
State Variables Each State Variable is defined as: state variable key: state variable type = default state variable value |