ContainerParentDO

/**
* @brief DO class: A container parent.
*/

Primary key: child_oid: int

schema ContainerParentDO {
  @primary child_oid: int,
  parent_oid: int
}

ContainerParentDO::getParentOid

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

ContainerParentDO::__all__

Data constraint method.

pub fn __all__(db: PropertiesDB) -> *ContainerParentDO;