/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { FormSubmissionStatus } from './FormSubmissionStatus'; /** * User's data gathered from a form template. All FormData belongs to a single FormGroup. * @export * @interface FormData */ export interface FormData { /** * The system issued identifier that uniquely identifies this object. * @type {string} * @memberof FormData */ formDataId?: string; /** * Will change whenever there is a change to the this data or its status. * @type {string} * @memberof FormData */ etag?: string; /** * The identifier of the group that manages this data. Required. * @type {string} * @memberof FormData */ groupId?: string; /** * User provided name for this submission. Required. * @type {string} * @memberof FormData */ name?: string; /** * Id of the user that created this object * @type {string} * @memberof FormData */ createdBy?: string; /** * The date this object was originally created. * @type {string} * @memberof FormData */ createdOn?: string; /** * The date this object was last modified. * @type {string} * @memberof FormData */ modifiedOn?: string; /** * The identifier of the data FileHandle for this object. * @type {string} * @memberof FormData */ dataFileHandleId?: string; /** * * @type {FormSubmissionStatus} * @memberof FormData */ submissionStatus?: FormSubmissionStatus; } /** * Check if a given object implements the FormData interface. */ export declare function instanceOfFormData(value: object): value is FormData; export declare function FormDataFromJSON(json: any): FormData; export declare function FormDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): FormData; export declare function FormDataToJSON(json: any): FormData; export declare function FormDataToJSONTyped(value?: FormData | null, ignoreDiscriminator?: boolean): any;