| 123456789101112131415161718192021222324252627 |
- // Code generated by goctl. DO NOT EDIT.
- package types
- type Request struct {
- Path string `form:"path"`
- }
- type Response struct {
- Path string `json:"path"`
- Message string `json:"message"`
- }
- type CallbackRequest struct {
- Path string `json:"path"`
- CallbackUrl string `json:"callback_url"` //回调地址
- OriginData map[string]string `json:"origin_data"` //透传数据
- }
- type CallbackResponse struct {
- }
- type OriginDataResponse struct {
- Path string `json:"path"`
- Message string `json:"message"`
- OriginData map[string]string `json:"origin_data"` //透传数据
- }
|