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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Songify {
    public var deleteAllVideos: DeleteAllVideos {
        DeleteAllVideos(path: path + "/delete-all-videos")
    }

    public struct DeleteAllVideos {
        /// Path: `/api/songify/delete-all-videos`
        public let path: String

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