One extra name and value pair captured with a contact form submission, holding a field which the built-in contact request properties do not cover. Each row belongs to a single contact request and is also stamped with the administrative organisation so field names and values can be searched across an account. Values are read back through the contact request rather than directly.
Group: Database Entities
Implements: Serializable, Relational
Properties
| Property | Returns | Description |
|---|---|---|
| adminOrg | Organisation | The administrative organisation the submission was received for, denormalised onto the field so field names and values can be searched without joining to the contact request. May be null on older rows. |
| contactRequest | ContactRequest | The contact form submission this field was captured with. Never null, and loaded lazily so reading it may hit the database. |
| fieldName | String | Name of the form field this value came from, as submitted by the form. Required, and the same name recurs across submissions of the same form. |
| fieldValue | String | The value the visitor entered for this field, stored as text of up to 4000 characters. Null or blank when the field was submitted empty. |
| id | long | Database identifier for this field, assigned when the row is first saved. |
Methods
getId()
Returns: long
Database identifier for this field, assigned when the row is first saved.
getContactRequest()
Returns: ContactRequest
The contact form submission this field was captured with. Never null, and loaded lazily so reading it may hit the database.
getAdminOrg()
Returns: Organisation
The administrative organisation the submission was received for, denormalised onto the field so field names and values can be searched without joining to the contact request. May be null on older rows.
getFieldName()
Returns: String
Name of the form field this value came from, as submitted by the form. Required, and the same name recurs across submissions of the same form.
getFieldValue()
Returns: String
The value the visitor entered for this field, stored as text of up to 4000 characters. Null or blank when the field was submitted empty.