9 lines
163 B
Plaintext
9 lines
163 B
Plaintext
|
|
package qcloud
|
||
|
|
|
||
|
|
type response struct {
|
||
|
|
Result int `json: "result"`
|
||
|
|
ErrMsg string `json:"errmsg"`
|
||
|
|
CallId string `json:"callid"`
|
||
|
|
Ext string `json:"ext"`
|
||
|
|
}
|