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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Video.Hooks {
    public var tabCarousel: TabCarousel {
        TabCarousel(path: path + "/tab_carousel")
    }

    public struct TabCarousel {
        /// Path: `/api/video/hooks/tab_carousel`
        public let path: String

        /// Tab Carousel
        public func post(_ body: [String: AnyJSON]) -> Request<GenAPI.TabCarouselResponse> {
            Request(path: path, method: "POST", body: body, id: "studio_api_video_hooks_api_tab_carousel")
        }
    }
}
