pub fn about(extended: bool) -> Result<OdooApiRequest<About>>
Expand description
Fetch basic information about the Odoo version
Service: common
Method: about
Request: About
Response: AboutResponse
Returns a link to the old OpenERP website, and optionally the “basic” Odoo
version string (e.g. 16.0+e
).
This call isn’t particularly useful on its own - you probably want to use Version
or version
instead.
Example:
use odoo_api::types::common;
let request = common::about(true);
See: odoo/service/common.py
See also: odoo/release.py