UnaryOpDO

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

Primary key: element_oid: int

schema UnaryOpDO {
  @primary element_oid: int,
  type: string,
  location_oid: int,
  parent_oid: int
}

UnaryOpDO::getParentOid

/**
* @brief gets the parent oid of this element.
* @return int
*/
pub fn getParentOid(self: UnaryOpDO) -> int;

UnaryOpDO::getLocationOid

/**
* @brief gets the location oid of this element.
* @return int
*/
pub fn getLocationOid(self: UnaryOpDO) -> int;

UnaryOpDO::__all__

Data constraint method.

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

UnaryOpDO::getType

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