skailan-ai
Version:
Servicio de IA y procesamiento de lenguaje natural para Skailan
27 lines • 723 B
JavaScript
export class Prompt {
id;
organizationId;
name;
description;
template;
type;
createdAt;
updatedAt;
constructor(id, organizationId, name, description, template, type, createdAt, updatedAt) {
this.id = id;
this.organizationId = organizationId;
this.name = name;
this.description = description;
this.template = template;
this.type = type;
this.createdAt = createdAt;
this.updatedAt = updatedAt;
}
updateInfo(description, template, type) {
this.description = description;
this.template = template;
this.type = type;
this.updatedAt = new Date();
}
}
//# sourceMappingURL=Prompt.js.map