response.go 205 B

12345678
  1. package model
  2. type RPCCommandResponse struct {
  3. Code int `json:"code"`
  4. Error string `json:"error"`
  5. Value interface{} `json:"value"`
  6. RawResponse bool `json:"-"`
  7. }