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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Video.Hooks.Delete {
    public func hookId(_ hookId: String) -> WithHookId {
        WithHookId(path: "\(path)/\(hookId)")
    }

    public struct WithHookId {
        /// Path: `/api/video/hooks/delete/{hook_id}`
        public let path: String

        /// Delete Video Hook
        public var post: Request<GenAPI.DeleteHookResponse> {
            Request(path: path, method: "POST", id: "studio_api_video_hooks_api_delete_video_hook")
        }
    }
}
