mirror of
https://github.com/linux-do/new-api.git
synced 2025-09-18 00:16:37 +08:00
20 lines
566 B
Go
20 lines
566 B
Go
package dto
|
|
|
|
type MidjourneyRequest struct {
|
|
Prompt string `json:"prompt"`
|
|
NotifyHook string `json:"notifyHook"`
|
|
Action string `json:"action"`
|
|
Index int `json:"index"`
|
|
State string `json:"state"`
|
|
TaskId string `json:"taskId"`
|
|
Base64Array []string `json:"base64Array"`
|
|
Content string `json:"content"`
|
|
}
|
|
|
|
type MidjourneyResponse struct {
|
|
Code int `json:"code"`
|
|
Description string `json:"description"`
|
|
Properties interface{} `json:"properties"`
|
|
Result string `json:"result"`
|
|
}
|