import { CustomFormField } from '.';
/**
 * Interface defining the property object that describes the custom form.
 *
 * @see [CustomForm](https://github.com/goboomtown/entities-ts/tree/master/docs)
 *
 * @OvationCXMApi
 */
export interface CustomForm {
    id?: string;
    name?: string;
    type?: string;
    orgTeamIds?: [string];
    created?: string;
    updated?: string;
    fields?: CustomFormField[];
}
