IField
Interface
Contains information about an attribute field.
IField
can also be imported from the following packages:
Properties
Property | Type | Notes |
---|---|---|
string | A string defining the field alias. | |
any | The value written in for new records by default. | |
The domain objects if applicable. | ||
boolean | A Boolean defining whether this field is editable. | |
boolean | A Boolean defining whether or not the field is an exact match. | |
number | A number defining how many characters are allowed in a string. field. | |
string | A string defining the field name. | |
boolean | A Boolean defining whether this field can have a null value. | |
A string defining the field type. |
alias optional
defaultValue optional
defaultValue: any
The value written in for new records by default.
domain optional
domain: IDomain
The domain objects if applicable.
editable optional
editable: boolean
A Boolean defining whether this field is editable.
exactMatch optional
exactMatch: boolean
A Boolean defining whether or not the field is an exact match.
length optional
length: number
A number defining how many characters are allowed in a string. field.
name
name: string
A string defining the field name.
nullable optional
nullable: boolean
A Boolean defining whether this field can have a null value.
type
type: FieldType
A string defining the field type.
alias: string
A string defining the field alias.