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

import Foundation
import Get
import URLQueryEncoder

extension Paths.VideoGen.Image.Generate {
    public func batchId(_ batchId: String) -> WithBatchId {
        WithBatchId(path: "\(path)/\(batchId)")
    }

    public struct WithBatchId {
        /// Path: `/api/video_gen/image/generate/{batch_id}`
        public let path: String

        /// Get Generated Image Batch
        public var get: Request<GenAPI.ImageBatchResponse> {
            Request(path: path, method: "GET", id: "studio_api_video_generation_api_get_generated_image_batch")
        }
    }
}
