fundamentum_edge_mcu_http_client/models/
device_fqn.rs

1/// Registry fully qualified name on the Hub.
2pub struct RegistryFQN {
3    /// Project id
4    pub project_id: u32,
5    /// Region id
6    pub region_id: u32,
7    /// Registry id
8    pub registry_id: u32,
9}
10
11/// Device fully qualified name.
12pub struct DeviceFQN<'a> {
13    /// Project id on the Hub
14    pub registry_fqn: RegistryFQN,
15    /// Device's serial number
16    pub serial_number: &'a str,
17}