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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Songify.Beta {
    public var createVideo: CreateVideo {
        CreateVideo(path: path + "/create-video")
    }

    public struct CreateVideo {
        /// Path: `/api/songify/beta/create-video`
        public let path: String

        /// Create Songify Video
        public func post(_ body: GenAPI.SongifyCreateVideoRequest) -> Request<Void> {
            Request(path: path, method: "POST", body: body, id: "studio_api_songify_api_create_songify_video")
        }
    }
}
