FileMd5SumDO

/**
* @brief DO class: A file md5 sum.
*/

Primary key: file_oid: int

schema FileMd5SumDO {
  @primary file_oid: int,
  value: string
}

FileMd5SumDO::getValue

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

FileMd5SumDO::__all__

Data constraint method.

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