pub struct About {
pub extended: bool,
}
Expand description
Fetch basic information about the Odoo version
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
instead.
See: odoo/service/common.py
See also: odoo/release.py
Fields§
§extended: bool
Trait Implementations§
source§impl JsonRpcParams for About
impl JsonRpcParams for About
type Container<T> = OdooApiContainer<About>
type Response = AboutResponse
fn build(self) -> JsonRpcRequest<Self>
source§impl OdooApiMethod for About
impl OdooApiMethod for About
source§fn describe(&self) -> (&'static str, &'static str)
fn describe(&self) -> (&'static str, &'static str)
Describe the JSON-RPC service and method for this type
source§fn _build(self) -> JsonRpcRequest<Self>
fn _build(self) -> JsonRpcRequest<Self>
Build
self
into a full JsonRpcRequest