ConstantDO

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

Primary key: element_oid: int

schema ConstantDO {
  @primary element_oid: int,
  value: string
}

ConstantDO::getValue

/**
* @brief gets the value of this element.
* @return string
*/
pub fn getValue(self: ConstantDO) -> string;

ConstantDO::__all__

Data constraint method.

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