Table of Contents

Class SubmissionDto

Namespace
MegaForm.Sdk
Assembly
MegaForm.Sdk.dll

A submission, as exposed to SDK consumers.

public sealed class SubmissionDto
Inheritance
SubmissionDto
Inherited Members

Properties

DataJson

Submitted field values as a JSON string.

public string? DataJson { get; set; }

Property Value

string

FormId

Id of the form this submission belongs to.

public int FormId { get; set; }

Property Value

int

IsSpam

Whether the submission was flagged as spam.

public bool IsSpam { get; set; }

Property Value

bool

Status

Submission status, e.g. "new", "approved", "rejected".

public string? Status { get; set; }

Property Value

string

SubmissionId

Unique submission id.

public int SubmissionId { get; set; }

Property Value

int

SubmittedOnUtc

UTC timestamp when the submission was created.

public DateTime SubmittedOnUtc { get; set; }

Property Value

DateTime

UserId

Id of the user who submitted the record, if known.

public int? UserId { get; set; }

Property Value

int?