12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- // Code generated by goctl. DO NOT EDIT.
- package types
- type CreateDomainReq struct {
- Name string `form:"name"`
- Meta string `form:"meta"`
- }
- type DomainOpResp struct {
- State string `json:"state"`
- }
- type LoadDomainReq struct {
- Name string `form:"name"`
- }
- type LoadFileReq struct {
- Domain string `form:"domain"`
- FileId string `form:"fileId"`
- }
- type LoadFileOpResp struct {
- Meta map[string]string `form:"meta"`
- }
- type SaveFileReq struct {
- Domain string `form:"domain"`
- FileId string `form:"fileId"`
- }
- type SaveFileOpResp struct {
- State string `json:"state"`
- }
- type UploadFileReq struct {
- Domain string `form:"domain"`
- FileId string `form:"fileId"`
- Meta map[string]string `form:"meta"`
- }
- type UploadFileOpResp struct {
- State string `json:"state"`
- }
|