DecoratorDO

/**
* @brief DO class: A decorator.
*/

Primary key: element_oid: int

schema DecoratorDO {
  @primary element_oid: int,
  type: string,
  printable_text: string
}

DecoratorDO::getPrintableText

/**
* @brief gets the printable text of this element.
* @return string
*/
pub fn getPrintableText(self: DecoratorDO) -> string;

DecoratorDO::__all__

Data constraint method.

pub fn __all__(db: PythonDB) -> *DecoratorDO;

DecoratorDO::getType

/**
* @brief gets the type of this element.
* @return string
*/
pub fn getType(self: DecoratorDO) -> string;