evolution-api / src /api /dto /template.dto.ts
oex2003's picture
Deploy Evolution API to Hugging Face Space
5e518ea
export class TemplateDto {
name: string;
category: string;
allowCategoryChange: boolean;
language: string;
components: any;
webhookUrl?: string;
}