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

import Foundation
import Get
import URLQueryEncoder

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

    public struct Report {
        /// Path: `/api/unified/items/comments/report`
        public let path: String

        /// Post Comment Report
        ///
        /// Report a comment.
        public func post(_ body: GenAPI.GenericCommentReportRequest) -> Request<GenAPI.GenericCommentReportResponse> {
            Request(path: path, method: "POST", body: body, id: "studio_api_unified_feed_actions_api_post_comment_report")
        }
    }
}
