Fix golang clients string -> int64 unmarshale error (#217)

This commit is contained in:
Janos Dobronszki
2021-09-27 12:12:33 +01:00
committed by GitHub
parent 6992fae6cf
commit 24c120896d
15 changed files with 42 additions and 37 deletions

View File

@@ -38,7 +38,7 @@ type CallResponse struct {
type StreamRequest struct {
// the number of messages to send back
Messages int64 `json:"messages"`
Messages int64 `json:"messages,string"`
Name string `json:"name"`
}