Interface TallyFormFullResponseDTO

Type definition for the getForm request, including the contents of the form as blocks

interface TallyFormFullResponseDTO {
    blocks?: TallyFormBlockDTO[];
    createdAt: string;
    id: string;
    isClosed: boolean;
    name: string;
    numberOfSubmissions: number;
    payments?: TallyPaymentsDTO[];
    settings?: TallyFormSettingsDTO;
    status: TallyFormStatus;
    updatedAt: string;
    workspaceId: string;
}

Hierarchy (View Summary)

Properties

createdAt: string
id: string
isClosed: boolean
name: string
numberOfSubmissions: number
payments?: TallyPaymentsDTO[]
updatedAt: string
workspaceId: string