TypeDeclarationDO

/**
* @brief DO class: Represents a declaration of a type.
*/

Primary key: oid: int

schema TypeDeclarationDO {
  @primary oid: int,
  type_oid: int,
  printable_text: string
}

TypeDeclarationDO::getPrintableText

/**
* @brief gets a printed representation of this element, including its structure where applicable.
* @return string.
*/
pub fn getPrintableText(self: TypeDeclarationDO) -> string;

TypeDeclarationDO::__all__

Data constraint method.

pub fn __all__(db: CfamilyDB) -> *TypeDeclarationDO;

TypeDeclarationDO::getTypeOid

/**
* @brief Type defined by this node
* @return int
*/
pub fn getTypeOid(self: TypeDeclarationDO) -> int;