> ## Documentation Index
> Fetch the complete documentation index at: https://docs.superoffice.com/llms.txt
> Use this file to discover all available pages before exploring further.

# SuperOffice.WebApi.Data.FormSubmissionEntity

# <a id="SuperOffice_WebApi_Data_FormSubmissionEntity" /> Class FormSubmissionEntity

Namespace: [SuperOffice.WebApi.Data](SuperOffice.WebApi.Data.md)\
Assembly: SuperOffice.WebApi.dll

Carrier object for FormSubmissionEntity.
Content of a Form submission

```csharp theme={null}
public class FormSubmissionEntity : Carrier
```

#### Inheritance

[object](https://learn.microsoft.com/dotnet/api/system.object) ←
[Carrier](SuperOffice.WebApi.Data.Carrier.md) ←
[FormSubmissionEntity](SuperOffice.WebApi.Data.FormSubmissionEntity.md)

#### Inherited Members

[Carrier.TableRight](SuperOffice.WebApi.Data.Carrier.md#SuperOffice_WebApi_Data_Carrier_TableRight),
[Carrier.FieldProperties](SuperOffice.WebApi.Data.Carrier.md#SuperOffice_WebApi_Data_Carrier_FieldProperties),
[object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring),
[object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object\)),
[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object-system-object\)),
[object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals),
[object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode),
[object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype),
[object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone)

## Examples

Get FormSubmissionEntity 123 using the WebApi client:
<pre><code class="lang-csharp">var configuration = new WebApiConfiguration(url);
var agent = new MarketingAgent(configuration);
var formSubmissionEntity = agent.GetFormSubmissionEntity( 123 );</code></pre>

## Constructors

### <a id="SuperOffice_WebApi_Data_FormSubmissionEntity__ctor" /> FormSubmissionEntity()

Default constructor - defaults any enum props to 0.

```csharp theme={null}
public FormSubmissionEntity()
```

## Properties

### <a id="SuperOffice_WebApi_Data_FormSubmissionEntity_ContactId" /> ContactId

The optional id of the contact of the person who submitted.

```csharp theme={null}
public virtual int ContactId { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_FormSubmissionEntity_EmailAddress" /> EmailAddress

The email address of the person who submitted

```csharp theme={null}
public virtual string EmailAddress { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_FormSubmissionEntity_FormId" /> FormId

The id of the parent form.

```csharp theme={null}
public virtual int FormId { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_FormSubmissionEntity_FormSubmissionId" /> FormSubmissionId

Primary key

```csharp theme={null}
public virtual int FormSubmissionId { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_FormSubmissionEntity_PersonId" /> PersonId

The optional id of the person who submitted.

```csharp theme={null}
public virtual int PersonId { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_FormSubmissionEntity_ProcessingLog" /> ProcessingLog

A log of what happened during processing

```csharp theme={null}
public virtual string ProcessingLog { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_FormSubmissionEntity_Response" /> Response

The JSON-formatted response from this form

```csharp theme={null}
public virtual string Response { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_FormSubmissionEntity_ResponseShipmentAddrId" /> ResponseShipmentAddrId

The id of the s\_shipment\_addr that is the response mail

```csharp theme={null}
public virtual int ResponseShipmentAddrId { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_FormSubmissionEntity_Status" /> Status

What is the status of this submission
NULL if unknown enum value.

```csharp theme={null}
[JsonIgnore]
public FormSubmissionStatus? Status { get; set; }
```

#### Property Value

[FormSubmissionStatus](SuperOffice.WebApi.Data.FormSubmissionStatus.md)?

#### See Also

[FormSubmissionEntity](SuperOffice.WebApi.Data.FormSubmissionEntity.md).[Status\_String](SuperOffice.WebApi.Data.FormSubmissionEntity.md#SuperOffice_WebApi_Data_FormSubmissionEntity_Status_String)

### <a id="SuperOffice_WebApi_Data_FormSubmissionEntity_Status_String" /> Status\_String

What is the status of this submission
Raw string enum value.

```csharp theme={null}
[JsonProperty("Status")]
public string Status_String { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

#### See Also

[FormSubmissionEntity](SuperOffice.WebApi.Data.FormSubmissionEntity.md).[Status](SuperOffice.WebApi.Data.FormSubmissionEntity.md#SuperOffice_WebApi_Data_FormSubmissionEntity_Status)

### <a id="SuperOffice_WebApi_Data_FormSubmissionEntity_WhenSubmitted" /> WhenSubmitted

The time of the submit.

```csharp theme={null}
public virtual DateTime WhenSubmitted { get; set; }
```

#### Property Value

[DateTime](https://learn.microsoft.com/dotnet/api/system.datetime)

## See Also

[MarketingAgent](SuperOffice.WebApi.Agents.MarketingAgent.md)


## Related topics

- [SuperOffice.WebApi.Agents.IMarketingAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.IMarketingAgent.md)
- [SuperOffice.WebApi.Agents.MarketingAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.MarketingAgent.md)
- [SuperOffice.WebApi.Data.TicketEntity](/en/api/reference/webapi/SuperOffice.WebApi.Data.TicketEntity.md)
- [SuperOffice.WebApi.Data.FormSubmissionStatus](/en/api/reference/webapi/SuperOffice.WebApi.Data.FormSubmissionStatus.md)
- [SuperOffice.WebApi.Data.TicketFormSubmission](/en/api/reference/webapi/SuperOffice.WebApi.Data.TicketFormSubmission.md)
- [SuperOffice.WebApi.Data.WorkflowStepOptionFormSubmission](/en/api/reference/webapi/SuperOffice.WebApi.Data.WorkflowStepOptionFormSubmission.md)
