ModDO

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

Primary key: element_oid: int

schema ModDO {
  @primary element_oid: int,
  type: string,
  location_oid: int
}

ModDO::getLocationOid

/**
* @brief gets the location oid of this element.
* @return int
*/
  • Parameter self: ModDO
  • Return int
pub fn getLocationOid(self: ModDO) -> int;

ModDO::__all__

Data constraint method.

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

ModDO::getType

/**
* @brief gets the type of this element.
* @return string
*/
  • Parameter self: ModDO
  • Return string
pub fn getType(self: ModDO) -> string;