UnderlyingTypeDO

/**
* @brief DO class: An underlying type.
*/

Primary key: oid: int

schema UnderlyingTypeDO {
  @primary oid: int,
  named: int,
  tp: int
}

UnderlyingTypeDO::getTp

/**
* @brief gets the tp of this element.
* @return int
*/
pub fn getTp(self: UnderlyingTypeDO) -> int;

UnderlyingTypeDO::__all__

Data constraint method.

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

UnderlyingTypeDO::getNamed

/**
* @brief gets the named of this element.
* @return int
*/
pub fn getNamed(self: UnderlyingTypeDO) -> int;