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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Notification.V2 {
    public var clearBadge: ClearBadge {
        ClearBadge(path: path + "/clear-badge")
    }

    public struct ClearBadge {
        /// Path: `/api/notification/v2/clear-badge`
        public let path: String

        /// Clear Notification Badge V2
        ///
        /// Clear (reset to 0) the notification badge count for the user.
        /// This does not mark notifications as read, only resets the badge counter.
        public var post: Request<Void> {
            Request(path: path, method: "POST", id: "studio_api_bots_notification_api_clear_notification_badge_v2")
        }
    }
}
