@goboomtown/entities
Version:
entities in typescript format. This includes: - Customer
17 lines (16 loc) • 410 B
TypeScript
import { HashMapOfStrings } from '.';
/**
* Interface defining the property object that describes the custom form fields.
*
* @see [CustomFormField](https://github.com/goboomtown/entities-ts/tree/master/docs)
*
* @OvationCXMApi
*/
export interface CustomFormField {
id?: string;
type?: string;
name?: string;
label?: string;
defaultValue?: string;
listItems?: HashMapOfStrings;
}