callback.go 326 B

1234567891011
  1. package param
  2. // AddCallbackParam is the model to create callback
  3. type AddCallbackParam struct {
  4. Business int8 `json:"business"`
  5. URL string `json:"url"`
  6. IsSobot bool `json:"is_sobot"`
  7. State int8 `json:"state"`
  8. ExternalAPI string `json:"external_api"`
  9. SourceAPI string `json:"source_api"`
  10. }