/**
 * CloudHospital Admin Api
 * CloudHospital application with Swagger, Swashbuckle, and API versioning.
 *
 * The version of the OpenAPI document: 1
 * Contact: developer@icloudhospital.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { AiPromptArgumentModel } from './ai-prompt-argument-model';
import { AiPromptAuthorizedHospitalModel } from './ai-prompt-authorized-hospital-model';
/**
 *
 * @export
 * @interface AiPromptWithContentModel
 */
export interface AiPromptWithContentModel {
    /**
     *
     * @type {string}
     * @memberof AiPromptWithContentModel
     */
    'aiPromptId'?: string;
    /**
     *
     * @type {string}
     * @memberof AiPromptWithContentModel
     */
    'name'?: string | null;
    /**
     *
     * @type {string}
     * @memberof AiPromptWithContentModel
     */
    'description'?: string | null;
    /**
     *
     * @type {boolean}
     * @memberof AiPromptWithContentModel
     */
    'isSystemPrompt'?: boolean;
    /**
     *
     * @type {Array<string>}
     * @memberof AiPromptWithContentModel
     */
    'tags'?: Array<string> | null;
    /**
     *
     * @type {Array<AiPromptAuthorizedHospitalModel>}
     * @memberof AiPromptWithContentModel
     */
    'authorizedHospitals'?: Array<AiPromptAuthorizedHospitalModel> | null;
    /**
     *
     * @type {Array<AiPromptArgumentModel>}
     * @memberof AiPromptWithContentModel
     */
    'arguments'?: Array<AiPromptArgumentModel> | null;
    /**
     *
     * @type {string}
     * @memberof AiPromptWithContentModel
     */
    'content'?: string | null;
}
//# sourceMappingURL=ai-prompt-with-content-model.d.ts.map