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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Gen.WithClipId.Comments {
    public var count: Count {
        Count(path: path + "/count")
    }

    public struct Count {
        /// Path: `/api/gen/{clip_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_bots_gen_api_get_comment_count")
        }
    }
}
