AnnotatedRelationDO

/**
* @brief DO class: Describe an annotated relation.
*/

Primary key: annotation_hash_id: int

schema AnnotatedRelationDO {
  @primary annotation_hash_id: int,
  annotated_item_hash_id: int
}

AnnotatedRelationDO::getAnnotatedItemHashId

/**
* @brief gets the annotated item hash id of this element.
* @return int
*/
pub fn getAnnotatedItemHashId(self: AnnotatedRelationDO) -> int;

AnnotatedRelationDO::__all__

Data constraint method.

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