@oneblink/sdk-core
    Preparing search index...

    Type Alias FormsAppDraft

    FormsAppDraft: NewFormsAppDraft & {
        createdAt?: string;
        createdBy?: UserProfile;
        draftDataId?: string;
        draftId: string;
        updatedAt?: string;
        updatedBy?: UserProfile;
    }

    Type declaration

    • OptionalcreatedAt?: string

      The date and time (in ISO format) the when a user last saved the draft after partially completing the form. When a draft is updated, createdAt is also updated to reflect when the draft was updated. This property should have actually been called updatedAt.

    • OptionalcreatedBy?: UserProfile

      The UserProfile of the user who first created the draft

    • OptionaldraftDataId?: string

      The id of the draft data stored

    • draftId: string

      The id of the draft

    • OptionalupdatedAt?: string

      The date and time (in ISO format) when the draft was last synced with the server. It is NOT when a user last saved the draft after partially completing the form. This property should have actually been called syncedAt.

    • OptionalupdatedBy?: UserProfile

      The UserProfile of the user who last updated the draft

    Replaced with FormSubmissionDraft and FormSubmissionDraftVersion