interface TemplateEnvelope {
    errorCode?: number;
    message?: string;
    nextCursor?: null | number;
    status?: string;
    template?: WorkflowTemplate;
    templates?: WorkflowTemplate[];
    [key: string]: unknown;
}

Indexable

  • [key: string]: unknown

Properties

errorCode?: number
message?: string
nextCursor?: null | number
status?: string
template?: WorkflowTemplate
templates?: WorkflowTemplate[]