interface NewS3SubmissionData {
    definition: Form;
    device?: S3SubmissionDataDevice;
    lastElementUpdated?: FormElement;
    sectionState?: {
        id: string;
        state: "COLLAPSED" | "EXPANDED";
    }[];
    submission: {
        [name: string]: unknown;
    };
}

Properties

definition: Form
lastElementUpdated?: FormElement
sectionState?: {
    id: string;
    state: "COLLAPSED" | "EXPANDED";
}[]

Type declaration

  • id: string
  • state: "COLLAPSED" | "EXPANDED"
submission: {
    [name: string]: unknown;
}

Type declaration

  • [name: string]: unknown