Class SubmissionDto
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
FormId
Id of the form this submission belongs to.
public int FormId { get; set; }
Property Value
IsSpam
Whether the submission was flagged as spam.
public bool IsSpam { get; set; }
Property Value
Status
Submission status, e.g. "new", "approved", "rejected".
public string? Status { get; set; }
Property Value
SubmissionId
Unique submission id.
public int SubmissionId { get; set; }
Property Value
SubmittedOnUtc
UTC timestamp when the submission was created.
public DateTime SubmittedOnUtc { get; set; }
Property Value
UserId
Id of the user who submitted the record, if known.
public int? UserId { get; set; }
Property Value
- int?