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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Persona.GetPersona {
    public func personaId(_ personaId: String) -> WithPersonaId {
        WithPersonaId(path: "\(path)/\(personaId)")
    }

    public struct WithPersonaId {
        /// Path: `/api/persona/get-persona/{persona_id}`
        public let path: String

        /// Get Persona
        public var get: Request<GenAPI.PersonaResponseSchema> {
            Request(path: path, method: "GET", id: "studio_api_bots_persona_api_get_persona")
        }
    }
}
