Interface TallyFormUpdateDTO

Type definition for the request payload to update a form

interface TallyFormUpdateDTO {
    blocks?: TallyFormBlockDTO[];
    id: string;
    name?: string;
    settings?: TallyFormSettingsDTO;
    status?: TallyFormStatus;
}

Properties

id: string
name?: string