DocstringCommentDO

/**
* @brief DO class: A docstring comment.
*/

Primary key: element_oid: int

schema DocstringCommentDO {
  @primary element_oid: int,
  text: string,
  documented_element_oid: int
}

DocstringCommentDO::__all__

Data constraint method.

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

DocstringCommentDO::getDocumentedElementOid

/**
* @brief gets the documented element oid of this element.
* @return int
*/
pub fn getDocumentedElementOid(self: DocstringCommentDO) -> int;

DocstringCommentDO::getText

/**
* @brief gets the text of this element.
* @return string
*/
pub fn getText(self: DocstringCommentDO) -> string;