AnnotationAssignmentStatementDO

/**
* @brief DO class: An annotation assignment statement.
*/

Primary key: element_oid: int

schema AnnotationAssignmentStatementDO {
  @primary element_oid: int,
  annotation_oid: int,
  target_oid: int,
  is_simple: int
}

AnnotationAssignmentStatementDO::getIsSimple

/**
* @brief gets the is simple of this element.
* @return int
*/
pub fn getIsSimple(self: AnnotationAssignmentStatementDO) -> int;

AnnotationAssignmentStatementDO::__all__

Data constraint method.

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

AnnotationAssignmentStatementDO::getTargetOid

/**
* @brief gets the target oid of this element.
* @return int
*/
pub fn getTargetOid(self: AnnotationAssignmentStatementDO) -> int;

AnnotationAssignmentStatementDO::getAnnotationOid

/**
* @brief gets the annotation oid of this element.
* @return int
*/
pub fn getAnnotationOid(self: AnnotationAssignmentStatementDO) -> int;