TypeObjectDO

/**
* @brief DO class: A type object.
*/

Primary key: oid: int

schema TypeObjectDO {
  @primary oid: int,
  object: int
}

TypeObjectDO::getObject

/**
* @brief gets the object of this element.
* @return int
*/
pub fn getObject(self: TypeObjectDO) -> int;

TypeObjectDO::__all__

Data constraint method.

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