1//! Endpoints for managing devices.
23use ruma_common::{MilliSecondsSinceUnixEpoch, OwnedDeviceId};
4use serde::{Deserialize, Serialize};
56pub mod delete_device;
7pub mod delete_devices;
8pub mod get_device;
9pub mod get_devices;
10pub mod update_device;
1112/// Information about a registered device.
13#[derive(Clone, Debug, Deserialize, Hash, Serialize)]
14#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
15pub struct Device {
16/// Device ID
17pub device_id: OwnedDeviceId,
1819/// Public display name of the device.
20pub display_name: Option<String>,
2122/// Most recently seen IP address of the session.
23pub last_seen_ip: Option<String>,
2425/// Unix timestamp that the session was last active.
26#[serde(skip_serializing_if = "Option::is_none")]
27pub last_seen_ts: Option<MilliSecondsSinceUnixEpoch>,
28}
2930impl Device {
31/// Creates a new `Device` with the given device ID.
32pub fn new(device_id: OwnedDeviceId) -> Self {
33Self { device_id, display_name: None, last_seen_ip: None, last_seen_ts: None }
34 }
35}