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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Video.Hooks.Feed {
    public var diagnostic: Diagnostic {
        Diagnostic(path: path + "/diagnostic")
    }

    public struct Diagnostic {
        /// Path: `/api/video/hooks/feed/diagnostic`
        public let path: String

        /// Fetch Video Hook Feed Diagnostic
        public func post(_ body: GenAPI.VideoHookFeedDiagnosticRequest) -> Request<GenAPI.VideoHookFeedDiagnosticResponse> {
            Request(path: path, method: "POST", body: body, id: "studio_api_video_hooks_api_fetch_video_hook_feed_diagnostic")
        }
    }
}
