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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Songify.WithRequestId {
    public var delete: Delete {
        Delete(path: path + "/delete")
    }

    public struct Delete {
        /// Path: `/api/songify/{request_id}/delete`
        public let path: String

        /// Delete Songify Videos By Request Id
        public var delete: Request<Void> {
            Request(path: path, method: "DELETE", id: "studio_api_songify_api_delete_songify_videos_by_request_id")
        }
    }
}
