// Generated by Create API
// https://github.com/CreateAPI/CreateAPI

import Foundation
import Get
import URLQueryEncoder

extension Paths.VideoGen {
    public var getAiVideoCover: GetAiVideoCover {
        GetAiVideoCover(path: path + "/get_ai_video_cover")
    }

    public struct GetAiVideoCover {
        /// Path: `/api/video_gen/get_ai_video_cover`
        public let path: String

        /// Get Ai Video Cover
        public func get(taskId: String) -> Request<GenAPI.GetVideoCoverResponse> {
            Request(path: path, method: "GET", query: [("task_id", taskId)], id: "studio_api_video_gen_api_get_ai_video_cover")
        }
    }
}
