| 9 | } |
| 10 | |
| 11 | type VideoTask struct { |
| 12 | ID string `json:"id"` |
| 13 | Prompt string `json:"prompt"` |
| 14 | State string `json:"state"` // "pending", "processing", "completed" |
| 15 | CreatedAt string `json:"created_at"` |
| 16 | Video *Video `json:"video"` |
| 17 | Liked interface{} `json:"liked"` |
| 18 | EstimateWaitSeconds interface{} `json:"estimate_wait_seconds"` |
| 19 | } |
| 20 | |
| 21 | type Video struct { |
| 22 | Url string `json:"url"` |
nothing calls this directly
no outgoing calls
no test coverage detected