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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Moderation {
    public var hiveModeration: HiveModeration {
        HiveModeration(path: path + "/hive-moderation")
    }

    public struct HiveModeration {
        /// Path: `/api/moderation/hive-moderation`
        public let path: String

        /// Deprecated Hive Moderation
        ///
        /// DEPRECATED: This endpoint has been moved to /moderation/hive/.
        /// Please use the new endpoint instead.
        @available(*, deprecated, message: "Deprecated")
        public var get: Request<Void> {
            Request(path: path, method: "GET", id: "studio_api_moderation_api_deprecated_hive_moderation")
        }
    }
}
