ParamVariableDeclarationDO

/**
* @brief DO class: A param variable declaration.
*/

Primary key: oid: int

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

ParamVariableDeclarationDO::getPrintableText

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

ParamVariableDeclarationDO::getTypeOid

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

ParamVariableDeclarationDO::__all__

Data constraint method.

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

ParamVariableDeclarationDO::getCallableOid

/**
* @brief gets the callable oid of this element.
* @return int
*/
pub fn getCallableOid(self: ParamVariableDeclarationDO) -> int;