Interface TallyForm

Extended domain model representing a form with additional functionality

interface TallyForm {
    blocks: TallyFormBlockDTO[];
    settings?: TallyFormSettingsDTO;
    status: TallyFormStatus;
    templateId?: string;
    workspaceId?: string;
    addBlock(block: TallyFormBlockDTO): TallyForm;
}

Hierarchy (View Summary)

Implemented by

Properties

templateId?: string
workspaceId?: string

Methods