Class FormSubmissionRecordData
POCO (Plain Old CLR Object) class that can be used to hold data corresponding to a row from the form_submission table.
Inherited Members
Namespace: SuperOffice.CRM.Rows
Assembly: SoDataBase.dll
Syntax
public class FormSubmissionRecordData
Remarks
Please use this class instead of a full FormSubmissionRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding FormSubmissionTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
Constructors
FormSubmissionRecordData()
POCO (Plain Old CLR Object) class that can be used to hold data corresponding to a row from the form_submission table.
Declaration
public FormSubmissionRecordData()
Remarks
Please use this class instead of a full FormSubmissionRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding FormSubmissionTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
Fields
ContactId
The optional id of the contact of the person who submitted.
Declaration
public int ContactId
Field Value
Type | Description |
---|---|
int |
Remarks
Please use this class instead of a full FormSubmissionRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding FormSubmissionTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
EmailAddress
The email address of the person who submitted
Declaration
public string EmailAddress
Field Value
Type | Description |
---|---|
string |
Remarks
Please use this class instead of a full FormSubmissionRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding FormSubmissionTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
FormId
The id of the parent form.
Declaration
public int FormId
Field Value
Type | Description |
---|---|
int |
Remarks
Please use this class instead of a full FormSubmissionRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding FormSubmissionTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
FormSubmissionId
Primary key
Declaration
public int FormSubmissionId
Field Value
Type | Description |
---|---|
int |
Remarks
Please use this class instead of a full FormSubmissionRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding FormSubmissionTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
PersonId
The optional id of the person who submitted.
Declaration
public int PersonId
Field Value
Type | Description |
---|---|
int |
Remarks
Please use this class instead of a full FormSubmissionRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding FormSubmissionTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
ProcessingLog
A log of what happened during processing
Declaration
public string ProcessingLog
Field Value
Type | Description |
---|---|
string |
Remarks
Please use this class instead of a full FormSubmissionRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding FormSubmissionTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
Response
The JSON-formatted response from this form
Declaration
public string Response
Field Value
Type | Description |
---|---|
string |
Remarks
Please use this class instead of a full FormSubmissionRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding FormSubmissionTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
ResponseShipmentAddrId
The id of the s_shipment_addr that is the response mail
Declaration
public int ResponseShipmentAddrId
Field Value
Type | Description |
---|---|
int |
Remarks
Please use this class instead of a full FormSubmissionRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding FormSubmissionTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
Status
What is the status of this submission
Declaration
public FormSubmissionStatus Status
Field Value
Type | Description |
---|---|
FormSubmissionStatus |
Remarks
Please use this class instead of a full FormSubmissionRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding FormSubmissionTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
WhenSubmitted
The time of the submit.
Declaration
public DateTime WhenSubmitted
Field Value
Type | Description |
---|---|
DateTime |
Remarks
Please use this class instead of a full FormSubmissionRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding FormSubmissionTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.