DecoratedRelationDO

/**
* @brief DO class: A decorated relation.
*/

Primary key: decorator_oid: int

schema DecoratedRelationDO {
  @primary decorator_oid: int,
  decorated_element_oid: int
}

DecoratedRelationDO::getDecoratedElementOid

/**
* @brief gets the decorated element oid of this element.
* @return int
*/
pub fn getDecoratedElementOid(self: DecoratedRelationDO) -> int;

DecoratedRelationDO::__all__

Data constraint method.

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