Class TicketFormSubmission
Class representing form submission related to ticket.
Carrier object for TicketFormSubmission.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
public class TicketFormSubmission : Object
Constructors
TicketFormSubmission()
Default constructor
Declaration
public TicketFormSubmission()
Properties
EmailAddress
The email address of the person who submitted
Declaration
public virtual string EmailAddress { get; set; }
Property Value
Type | Description |
---|---|
String |
FormSubmissionId
Primary key
Declaration
public virtual int FormSubmissionId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
Status
What is the status of this submission
Declaration
public virtual FormSubmissionStatus Status { get; set; }
Property Value
Type | Description |
---|---|
FormSubmissionStatus |
Methods
ToString()
Returns the carrier contents as a formatted string.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String | The carrier contents. |
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. |