From 325a1e2eddc3dece99c0270eff787e87c3bd4956 Mon Sep 17 00:00:00 2001 From: Gurminder Sunner Date: Mon, 12 Aug 2019 15:53:30 +0100 Subject: [PATCH] update docs, prediction proto with jsonData field --- doc/source/reference/apis/prediction.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/source/reference/apis/prediction.md b/doc/source/reference/apis/prediction.md index e72b8a43bf..4be0c8e44f 100644 --- a/doc/source/reference/apis/prediction.md +++ b/doc/source/reference/apis/prediction.md @@ -22,6 +22,7 @@ package seldon.protos; option java_package = "io.seldon.protos"; option java_outer_classname = "PredictionProtos"; +option go_package = "github.com/seldonio/seldon-core/examples/wrappers/go/pkg/api"; // [START Messages] @@ -33,6 +34,7 @@ message SeldonMessage { DefaultData data = 3; bytes binData = 4; string strData = 5; + google.protobuf.Value jsonData = 6; } }