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

import Foundation
import Get
import URLQueryEncoder

extension Paths.UserActions {
    public var actionCheck: ActionCheck {
        ActionCheck(path: path + "/action_check")
    }

    public struct ActionCheck {
        /// Path: `/api/user_actions/action_check`
        public let path: String

        /// Action Check
        ///
        /// Action check whether we need to add captcha check
        public var post: Request<Void> {
            Request(path: path, method: "POST", id: "studio_api_user_actions_api_action_check")
        }
    }
}
