Class FormSubmissionEntity
Content of a Form submission
Carrier object for FormSubmissionEntity. Services for the FormSubmissionEntity Carrier is available from the Marketing Agent.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.2.0.0")]
public class FormSubmissionEntity : Carrier
Examples
Get FormSubmissionEntity 123 using the agent:
using SuperOffice;
using SuperOffice.CRM.Services;
using (SoSession mySession = SoSession.Authenticate("user", "pass"))
{
var agent = new MarketingAgent();
var formSubmissionEntity = agent.GetFormSubmissionEntity( 123 );
}
Constructors
FormSubmissionEntity()
Default constructor
Declaration
public FormSubmissionEntity()
See Also
Properties
ContactId
The optional id of the contact of the person who submitted.
Declaration
[DataMember]
public virtual int ContactId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
EmailAddress
The email address of the person who submitted
Declaration
[DataMember]
public virtual string EmailAddress { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
FormId
The id of the parent form.
Declaration
[DataMember]
public virtual int FormId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
FormSubmissionId
Primary key
Declaration
[DataMember]
public virtual int FormSubmissionId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
PersonId
The optional id of the person who submitted.
Declaration
[DataMember]
public virtual int PersonId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
ProcessingLog
A log of what happened during processing
Declaration
[DataMember]
public virtual string ProcessingLog { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
Response
The JSON-formatted response from this form
Declaration
[DataMember]
public virtual string Response { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
ResponseShipmentAddrId
The id of the s_shipment_addr that is the response mail
Declaration
[DataMember]
public virtual int ResponseShipmentAddrId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
Status
What is the status of this submission
Declaration
[DataMember]
public virtual FormSubmissionStatus Status { get; set; }
Property Value
Type | Description |
---|---|
FormSubmissionStatus |
See Also
WhenSubmitted
The time of the submit.
Declaration
[DataMember]
public virtual DateTime WhenSubmitted { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
See Also
Methods
ToString()
Returns the carrier contents as a formatted string.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | The carrier contents. |
See Also
ToString(string)
Returns the carrier contents as a formatted string, useful for debugging. Each line in the output is prefixed with the input value.
Declaration
public string ToString(string prefix)
Parameters
Type | Name | Description |
---|---|---|
string | prefix | The line prefix (typically used for indenting) |
Returns
Type | Description |
---|---|
string | The carrier contents. |