NameExpressionDO

/**
* @brief DO class: A name expression.
*/

Primary key: element_oid: int

schema NameExpressionDO {
  @primary element_oid: int,
  ctx_type: string
}

NameExpressionDO::getCtxType

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

NameExpressionDO::__all__

Data constraint method.

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