Show / Hide Table of Contents

Class FormSubmissionEntity

Content of a Form submission

Carrier object for FormSubmissionEntity. Services for the FormSubmissionEntity Carrier is available from the Marketing Agent.
Inheritance
object
FormSubmissionEntity
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
IMarketingAgent

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
IMarketingAgent

EmailAddress

The email address of the person who submitted

Declaration
[DataMember]
public virtual string EmailAddress { get; set; }
Property Value
Type Description
string
See Also
IMarketingAgent

FormId

The id of the parent form.

Declaration
[DataMember]
public virtual int FormId { get; set; }
Property Value
Type Description
int
See Also
IMarketingAgent

FormSubmissionId

Primary key

Declaration
[DataMember]
public virtual int FormSubmissionId { get; set; }
Property Value
Type Description
int
See Also
IMarketingAgent

PersonId

The optional id of the person who submitted.

Declaration
[DataMember]
public virtual int PersonId { get; set; }
Property Value
Type Description
int
See Also
IMarketingAgent

ProcessingLog

A log of what happened during processing

Declaration
[DataMember]
public virtual string ProcessingLog { get; set; }
Property Value
Type Description
string
See Also
IMarketingAgent

Response

The JSON-formatted response from this form

Declaration
[DataMember]
public virtual string Response { get; set; }
Property Value
Type Description
string
See Also
IMarketingAgent

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
IMarketingAgent

Status

What is the status of this submission

Declaration
[DataMember]
public virtual FormSubmissionStatus Status { get; set; }
Property Value
Type Description
FormSubmissionStatus
See Also
IMarketingAgent

WhenSubmitted

The time of the submit.

Declaration
[DataMember]
public virtual DateTime WhenSubmitted { get; set; }
Property Value
Type Description
DateTime
See Also
IMarketingAgent

Methods

ToString()

Returns the carrier contents as a formatted string.

Declaration
public override string ToString()
Returns
Type Description
string

The carrier contents.

See Also
IMarketingAgent

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.

See Also
IMarketingAgent

See Also

IMarketingAgent
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top