From 4085e00c6f4d82c3da798ae1bc97324bc9cada2e Mon Sep 17 00:00:00 2001 From: Anatolii Kurotych Date: Thu, 2 Jan 2025 17:40:37 +0200 Subject: [PATCH] [Mobile Config] Add updated_at to GatewayInfoV2 (response) (#436) * Add updated_at to gateway_info_v2 response --- src/service/mobile_config.proto | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/service/mobile_config.proto b/src/service/mobile_config.proto index bdc63061..865c2376 100644 --- a/src/service/mobile_config.proto +++ b/src/service/mobile_config.proto @@ -79,6 +79,9 @@ message gateway_info_v2 { // The unix epoch timestamp (in seconds) // when the gateway was first added to the database. uint64 created_at = 4; + // The unix epoch timestamp (in seconds) + // when the gateway parameters (highly possible) were changed in the database. + uint64 updated_at = 5; } message gateway_info_req_v1 {