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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Video.Hooks.Admin {
    public var batch: Batch {
        Batch(path: path + "/batch")
    }

    public struct Batch {
        /// Path: `/api/video/hooks/admin/batch`
        public let path: String

        /// Batch Admin Hooks
        ///
        /// Batch fetch hooks for admin visualization and ranking analysis.
        /// Staff-only endpoint that returns fully hydrated hooks including test hooks and flagged content.
        public func post(_ body: GenAPI.BatchAdminHooksRequest) -> Request<GenAPI.BatchAdminHooksResponse> {
            Request(path: path, method: "POST", body: body, id: "studio_api_video_hooks_admin_api_batch_admin_hooks")
        }
    }
}
