@goboomtown/entities
Version:
entities in typescript format. This includes: - Customer
18 lines (17 loc) • 414 B
TypeScript
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[];
}