ParentDO

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

Primary key: parent_hash_id: int

schema ParentDO { @primary parent_hash_id: int, parent_type: string } 

ParentDO::getParentType

/** * @brief gets the parent type of this element. * @return string */ 
  • Parameter self: ParentDO
  • Return string
pub fn getParentType(self: ParentDO) -> string; 

ParentDO::__all__

Data constraint method.

pub fn __all__(db: JavaDB) -> *ParentDO;