Interface TallyFormCreateDTO

Type definition for the request payload to create a form

interface TallyFormCreateDTO {
    blocks: TallyFormBlockDTO[];
    settings?: TallyFormSettingsDTO;
    status: TallyFormStatus;
    templateId?: string;
    workspaceId?: string;
}

Hierarchy (View Summary)

Properties

templateId?: string
workspaceId?: string