10 lines
340 B
Go
10 lines
340 B
Go
|
|
// Package network define struct of network operation
|
||
|
|
package network
|
||
|
|
|
||
|
|
// RealTimeDataReceiveResponse defines response params of real time data receive api
|
||
|
|
type RealTimeDataReceiveResponse struct {
|
||
|
|
Code int64 `json:"code"`
|
||
|
|
Msg string `json:"msg"`
|
||
|
|
PayLoad map[string]interface{} `json:"payload"`
|
||
|
|
}
|