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

import Foundation
import Get
import URLQueryEncoder

extension Paths.User {
    public var userJourney: UserJourney {
        UserJourney(path: path + "/user-journey")
    }

    public struct UserJourney {
        /// Path: `/api/user/user-journey`
        public let path: String

        /// Get User Journey
        public var get: Request<GenAPI.UserJourneySchema> {
            Request(path: path, method: "GET", id: "studio_api_bots_user_api_get_user_journey")
        }
    }
}
