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
*/
- Parameter
self
:AttributeExpressionDO
- Return
string
pub fn getCtxType(self: AttributeExpressionDO) -> string;
AttributeExpressionDO::__all__
Data constraint method.
- Parameter
db
:PythonDB
- Return
*AttributeExpressionDO
pub fn __all__(db: PythonDB) -> *AttributeExpressionDO;
AttributeExpressionDO::getValueOid
/**
* @brief gets the value oid of this element.
* @return int
*/
- Parameter
self
:AttributeExpressionDO
- Return
int
pub fn getValueOid(self: AttributeExpressionDO) -> int;