From a3cecaff4ec31f62edba59f4eecba6223c11ebf9 Mon Sep 17 00:00:00 2001 From: Woochanlee Date: Fri, 9 Jul 2021 13:49:08 +0900 Subject: [PATCH] proto: Delete an invalid type values attribute checks and returns only bool type. Change-Id: Iadc2aec7f3647044dceee7641a25ef9564963403 --- protocol/aurum.proto | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/protocol/aurum.proto b/protocol/aurum.proto index 23f6f67..639bed7 100644 --- a/protocol/aurum.proto +++ b/protocol/aurum.proto @@ -234,13 +234,7 @@ message ReqGetAttribute { } message RspGetAttribute { RspStatus status = 1; - ParamType type = 2; - oneof params { - string stringValue = 3; - int32 intValue = 4; - double doubleValue = 5; - bool boolValue = 6; - } + bool boolValue = 2; } // ------------------------------------ // -- 2.34.1