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

import Foundation
import Get
import URLQueryEncoder

extension Paths.User {
    public var me: Me {
        Me(path: path + "/me")
    }

    public struct Me {
        /// Path: `/api/user/me`
        public let path: String

        /// Get User Profile
        ///
        /// Get the current user's personal profile, including birthday, email, phone number, etc.
        /// 
        /// This endpoint is only available for authenticated users.
        public var get: Request<GenAPI.GetUserMeResponse> {
            Request(path: path, method: "GET", id: "studio_api_bots_user_api_get_user_profile")
        }
    }
}
