Interface EmailTemplateListResponse

interface EmailTemplateListResponse {
    count: number;
    errors?: string[];
    message: string;
    templates: {
        created_at: string;
        email_template_id: string;
        tags: string[];
        template_name: string;
        updated_at: string;
    }[];
}

Hierarchy

  • ServerResponse
    • EmailTemplateListResponse

Properties

count: number
errors?: string[]
message: string
templates: {
    created_at: string;
    email_template_id: string;
    tags: string[];
    template_name: string;
    updated_at: string;
}[]