AttributeExpressionDO

/**
* @brief DO class: An attribute expression.
*/

Primary key: element_oid: int

schema AttributeExpressionDO {
  @primary element_oid: int,
  value_oid: int,
  ctx_type: string
}

AttributeExpressionDO::getCtxType

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

AttributeExpressionDO::__all__

Data constraint method.

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

AttributeExpressionDO::getValueOid

/**
* @brief gets the value oid of this element.
* @return int
*/
pub fn getValueOid(self: AttributeExpressionDO) -> int;