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

import Foundation
import Get
import URLQueryEncoder

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

    public struct Replies {
        /// Path: `/api/unified/items/comments/replies`
        public let path: String

        /// Get Comment Replies
        ///
        /// Get replies to a comment.
        public var get: Request<GenAPI.GetCommentRepliesResponse> {
            Request(path: path, method: "GET", id: "studio_api_unified_feed_actions_api_get_comment_replies")
        }
    }
}
