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

import Foundation
import Get
import URLQueryEncoder

extension Paths.UserActions {
    public var userCheck: UserCheck {
        UserCheck(path: path + "/user_check")
    }

    public struct UserCheck {
        /// Path: `/api/user_actions/user_check`
        public let path: String

        /// Is Bot Check
        public func post(_ body: GenAPI.UserCheckSpec) -> Request<Void> {
            Request(path: path, method: "POST", body: body, id: "studio_api_user_actions_api_is_bot_check")
        }
    }
}
