TypeiadicDO

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

Primary key: oid: int

schema TypeiadicDO {
  @primary oid: int,
  association_obj_id: int
}

TypeiadicDO::getAssociationObjId

/**
* @brief gets the association obj id of this element.
* @return int
*/
pub fn getAssociationObjId(self: TypeiadicDO) -> int;

TypeiadicDO::__all__

Data constraint method.

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