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