@oneblink/sdk
    Preparing search index...

    Type Alias FormSubmissionMeta

    FormSubmissionMeta: NewFormSubmissionMeta & {
        formName?: string;
        lastEdit?: FormSubmissionMetaEdit;
        submissionTitle?: string;
        validationResult?:
            | { error: string; isInvalid: true }
            | { isInvalid: false };
    }

    Type Declaration

    • OptionalformName?: string

      The name of the form that was submitted

    • OptionallastEdit?: FormSubmissionMetaEdit

      The most recent FormSubmissionMetaEdit for this submission. Omitted when the submission has never been edited. Presence of this property indicates there is more than one version of the submission.

    • OptionalsubmissionTitle?: string

      The evaluation of the submission title configuration

    • OptionalvalidationResult?: { error: string; isInvalid: true } | { isInvalid: false }

      Information to determine if the form submission was valid or not