MetainfoDO

/**
* @brief DO class: A metainfo.
*/

Primary key: oid: int

schema MetainfoDO {
  @primary oid: int,
  kind: string,
  value: string,
  program_oid: int
}

MetainfoDO::getProgramOid

/**
* @brief gets the program oid of this element.
* @return int
*/
pub fn getProgramOid(self: MetainfoDO) -> int;

MetainfoDO::__all__

Data constraint method.

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

MetainfoDO::getValue

/**
* @brief gets the value of this element.
* @return string
*/
pub fn getValue(self: MetainfoDO) -> string;

MetainfoDO::getKind

/**
* @brief gets the kind of this element.
* @return string
*/
pub fn getKind(self: MetainfoDO) -> string;