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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Video.Hooks.Comments.WithHookId.Comments {
    public var count: Count {
        Count(path: path + "/count")
    }

    public struct Count {
        /// Path: `/api/video/hooks/comments/{hook_id}/comments/count`
        public let path: String

        /// Get Comment Count
        ///
        /// Get the count of comments for a clip.
        public var get: Request<GenAPI.GetCommentCountResponse> {
            Request(path: path, method: "GET", id: "studio_api_video_hooks_comments_api_get_comment_count")
        }
    }
}
