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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Comment {
    public func commentId(_ commentId: String) -> WithCommentId {
        WithCommentId(path: "\(path)/\(commentId)")
    }

    public struct WithCommentId {
        /// Path: `/api/comment/{comment_id}`
        public let path: String

        /// Delete Comment
        ///
        /// Delete a comment. Users can only delete their own comments.
        public var delete: Request<GenAPI.DeleteCommentResponse> {
            Request(path: path, method: "DELETE", id: "studio_api_bots_comment_api_delete_comment")
        }
    }
}
