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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Songify.WithSongifyId {
    public var status: Status {
        Status(path: path + "/status")
    }

    public struct Status {
        /// Path: `/api/songify/{songify_id}/status`
        public let path: String

        /// Get Songify Status
        public var get: Request<Void> {
            Request(path: path, method: "GET", id: "studio_api_songify_api_get_songify_status")
        }

        /// Set Songify Status
        public func patch(_ body: GenAPI.SongifySetStatusRequest) -> Request<Void> {
            Request(path: path, method: "PATCH", body: body, id: "studio_api_songify_api_set_songify_status")
        }
    }
}
