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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Video.Hooks.Admin.WatchHistory {
    public var inspect: Inspect {
        Inspect(path: path + "/inspect")
    }

    public struct Inspect {
        /// Path: `/api/video/hooks/admin/watch_history/inspect`
        public let path: String

        /// Inspect Watch History
        ///
        /// Inspect the current user's Hooks watch history from Redis.
        /// Staff-only endpoint that returns the list of watched hook IDs.
        public var get: Request<GenAPI.InspectWatchHistoryResponse> {
            Request(path: path, method: "GET", id: "studio_api_video_hooks_admin_api_inspect_watch_history")
        }
    }
}
