UnExtractedDO

/**
* @brief DO class: An un extracted.
*/

Primary key: oid: int

schema UnExtractedDO {
  @primary oid: int,
  type: int,
  name: string
}

UnExtractedDO::getName

/**
* @brief gets the name of this element.
* @return string
*/
pub fn getName(self: UnExtractedDO) -> string;

UnExtractedDO::__all__

Data constraint method.

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

UnExtractedDO::getType

/**
* @brief gets the type of this element.
* @return int
*/
pub fn getType(self: UnExtractedDO) -> int;