From 19900bdd29734ff50ebd1904c35c3283696a1ec3 Mon Sep 17 00:00:00 2001 From: Bas Kloosterman Date: Fri, 16 Sep 2022 13:01:59 +0200 Subject: [PATCH] Update service to servicId --- okap.proto | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/okap.proto b/okap.proto index bfc6ca6..d28e931 100644 --- a/okap.proto +++ b/okap.proto @@ -115,14 +115,14 @@ message CallbackConfig { } message ConfigureCallbackRequest { - string service = 1; + string serviceId = 1; bool enabled = 2; CallbackConfig fetch = 3; CallbackConfig push = 4; } message ConfigureCallbackResponse { - string service = 1; + string serviceId = 1; bool enabled = 2; CallbackConfig fetch = 3; CallbackConfig push = 4; @@ -132,7 +132,7 @@ message ListServicesRequest { } message ServiceConfiguration { - string service = 1; + string serviceId = 1; bool enabled = 2; CallbackConfig fetch = 3; CallbackConfig push = 4;