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

import Foundation
import Get
import URLQueryEncoder

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

    public struct Count {
        /// Path: `/api/unified/items/comments/count`
        public let path: String

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