diff --git a/src/r0/device.rs b/src/r0/device.rs index 0c22c151..685dab81 100644 --- a/src/r0/device.rs +++ b/src/r0/device.rs @@ -21,7 +21,7 @@ pub struct Device { pub display_name: Option, /// Most recently seen IP address of the session. - pub ip: Option, + pub last_seen_ip: Option, /// Unix timestamp that the session was last active. #[serde( @@ -29,5 +29,5 @@ pub struct Device { default, skip_serializing_if = "Option::is_none" )] - pub last_seen: Option, + pub last_seen_ts: Option, }