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

import Foundation
import Get
import URLQueryEncoder

extension Paths.VideoGen.Higgsfield {
    public var soul: Soul {
        Soul(path: path + "/soul")
    }

    public struct Soul {
        /// Path: `/api/video_gen/higgsfield/soul`
        public let path: String

        /// Create Soul Image
        ///
        /// Create a text-to-image soul job
        public func post(_ body: GenAPI.CreateSoulImageRequest) -> Request<Void> {
            Request(path: path, method: "POST", body: body, id: "studio_api_video_gen_higgsfield_api_create_soul_image")
        }
    }
}
