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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Users {
    public var mergeAccounts: MergeAccounts {
        MergeAccounts(path: path + "/merge_accounts")
    }

    public struct MergeAccounts {
        /// Path: `/api/users/merge_accounts`
        public let path: String

        /// Merge Accounts View
        public func post(_ body: GenAPI.MergeAccountsSpec) -> Request<Void> {
            Request(path: path, method: "POST", body: body, id: "studio_api_bots_api_merge_accounts_view")
        }
    }
}
