types.go 790 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // Code generated by goctl. DO NOT EDIT.
  2. package types
  3. type CreateDomainReq struct {
  4. Name string `form:"name"`
  5. Meta string `form:"meta"`
  6. }
  7. type DomainOpResp struct {
  8. State string `json:"state"`
  9. }
  10. type LoadDomainReq struct {
  11. Name string `form:"name"`
  12. }
  13. type LoadFileReq struct {
  14. Domain string `form:"domain"`
  15. FileId string `form:"fileId"`
  16. }
  17. type LoadFileOpResp struct {
  18. Meta map[string]string `form:"meta"`
  19. }
  20. type SaveFileReq struct {
  21. Domain string `form:"domain"`
  22. FileId string `form:"fileId"`
  23. }
  24. type SaveFileOpResp struct {
  25. State string `json:"state"`
  26. }
  27. type UploadFileReq struct {
  28. Domain string `form:"domain"`
  29. FileId string `form:"fileId"`
  30. Meta map[string]string `form:"meta"`
  31. }
  32. type UploadFileOpResp struct {
  33. State string `json:"state"`
  34. }