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

import Foundation
import Get
import URLQueryEncoder

extension Paths.Persona {
    public var getTrashedPersonas: GetTrashedPersonas {
        GetTrashedPersonas(path: path + "/get-trashed-personas")
    }

    public struct GetTrashedPersonas {
        /// Path: `/api/persona/get-trashed-personas`
        public let path: String

        /// Get Trashed Personas
        public var get: Request<[GenAPI.PersonaResponseSchema]> {
            Request(path: path, method: "GET", id: "studio_api_bots_persona_api_get_trashed_personas")
        }
    }
}
