rpc/protocol/json/server_response.go

28 lines
935 B
Go
Raw Normal View History

2017-11-26 10:15:51 +00:00
package json
import (
"encoding/json"
)
// ----------------------------------------------------------------------------
// Response
// ----------------------------------------------------------------------------
// serverResponse represents a JSON-RPC response returned by the server.
type serverResponse struct {
2017-11-28 16:19:03 +00:00
// JSON-RPC protocol.
Version string `json:"jsonrpc"`
2017-11-26 10:15:51 +00:00
// The Object that was returned by the invoked method. This must be null
// in case there was an error invoking the method.
// As per spec the member will be omitted if there was an error.
Result interface{} `json:"result,omitempty"`
// An Error object if there was an error invoking the method. It must be
// null if there was no error.
// As per spec the member will be omitted if there was no error.
Error *Error `json:"error,omitempty"`
// This must be the same id as the request it is responding to.
ID *json.RawMessage `json:"id,omitempty"`
}