types.go 516 B

12345678910111213141516171819202122
  1. // Code generated by goctl. DO NOT EDIT.
  2. package types
  3. type CallbackRequest struct {
  4. MsgSignature string `form:"msg_signature"`
  5. Timestamp string `form:"timestamp"`
  6. Nonce string `form:"nonce"`
  7. Echostr string `form:"echostr"`
  8. }
  9. type CallbackMsgRequest struct {
  10. MsgSignature string `form:"msg_signature"`
  11. Timestamp string `form:"timestamp"`
  12. Nonce string `form:"nonce"`
  13. }
  14. type CallbackResponse struct {
  15. Code int `json:"code"`
  16. Msg string `json:"msg"`
  17. Data string `json:"data"`
  18. }