Interface LeadFormsUpdateParams

interface LeadFormsUpdateParams {
    active?: number | boolean;
    confirmation?: string;
    description: string;
    form_id: number;
    group_id: number;
    name: string;
    notify_admins?: number | number[];
    notify_emails?: string | string[];
    once_per_user?: number | boolean;
    photo?: string;
    pixel_code?: string;
    policy_link_url: string;
    questions: string;
    site_link_url?: string;
    title: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

active?: number | boolean
confirmation?: string
description: string
form_id: number
group_id: number
name: string
notify_admins?: number | number[]
notify_emails?: string | string[]
once_per_user?: number | boolean
photo?: string
pixel_code?: string
policy_link_url: string
questions: string
site_link_url?: string
title: string

Generated using TypeDoc