UnaryOpExpressionDO

/**
* @brief DO class: An unary op expression.
*/

Primary key: element_oid: int

schema UnaryOpExpressionDO {
  @primary element_oid: int,
  op_code: string,
  operand_oid: int
}

UnaryOpExpressionDO::getOperandOid

/**
* @brief gets the operand oid of this element.
* @return int
*/
pub fn getOperandOid(self: UnaryOpExpressionDO) -> int;

UnaryOpExpressionDO::__all__

Data constraint method.

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

UnaryOpExpressionDO::getOpCode

/**
* @brief gets the op code of this element.
* @return string
*/
pub fn getOpCode(self: UnaryOpExpressionDO) -> string;