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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Songify {
    public var create: Create {
        Create(path: path + "/create")
    }

    public struct Create {
        /// Path: `/api/songify/create`
        public let path: String

        /// Create Songify Generation
        ///
        /// V2 endpoint for creating a songify generation (v1 endpoint is in the modal stub itself)
        public func post(_ body: GenAPI.SongifyCreateGenerationRequest) -> Request<Void> {
            Request(path: path, method: "POST", body: body, id: "studio_api_songify_api_create_songify_generation")
        }
    }
}
