From 69f3d4ae1f1826cf4dcbf92075fd6221cce67b72 Mon Sep 17 00:00:00 2001 From: Nikita Poltorapavlo Date: Tue, 27 Aug 2024 15:58:00 +0300 Subject: [PATCH] DELIA-66115: ScopeType enum case (#371) Reason for change: Lowercase for consistency with previous json spec. Test Procedure: None Risks: None Signed-off-by: Nikita Poltorapavlo --- interfaces/IStore2.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interfaces/IStore2.h b/interfaces/IStore2.h index 6f4810ed..f7ccd0c3 100644 --- a/interfaces/IStore2.h +++ b/interfaces/IStore2.h @@ -32,8 +32,8 @@ namespace Exchange { ~IStore2() override = default; enum ScopeType : uint8_t { - DEVICE, - ACCOUNT + DEVICE /* @text:device */, + ACCOUNT /* @text:account */ }; struct EXTERNAL INotification : virtual public Core::IUnknown {