ContainerParentDO

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

Primary key: oid: int

schema ContainerParentDO {
  @primary oid: int,
  parent: int,
  child: int
}

ContainerParentDO::getChild

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

ContainerParentDO::__all__

Data constraint method.

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

ContainerParentDO::getParent

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