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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Songify.Beta {
    public var deleteVideo: DeleteVideo {
        DeleteVideo(path: path + "/delete-video")
    }

    public struct DeleteVideo {
        /// Path: `/api/songify/beta/delete-video`
        public let path: String

        /// Delete Songify Video
        public func delete(_ body: GenAPI.SongifyDeleteVideoRequest) -> Request<Void> {
            Request(path: path, method: "DELETE", body: body, id: "studio_api_songify_api_delete_songify_video")
        }
    }
}
