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

import Foundation
import Get
import URLQueryEncoder

extension Paths.User.GetCreatorInfo {
    public func creatorId(_ creatorId: String) -> WithCreatorId {
        WithCreatorId(path: "\(path)/\(creatorId)")
    }

    public struct WithCreatorId {
        /// Path: `/api/user/get-creator-info/{creator_id}`
        public let path: String

        /// Get Creator Info
        ///
        /// The logged-in user's account.
        public var get: Request<GenAPI.SimpleProfileInfoSchema> {
            Request(path: path, method: "GET", id: "studio_api_bots_user_api_get_creator_info")
        }
    }
}
