interface TaskGroup {
    createdAt: string;
    formsAppEnvironmentId: number;
    name: string;
    organisationId: string;
    taskGroupId: string;
    taskIds: (string | TaskGroupSubGroup)[];
    versionId: number;
}

Hierarchy (view full)

Properties

createdAt: string
formsAppEnvironmentId: number

The related forms app environment id that this task group belongs to

name: string

The label of the task group

organisationId: string

The organisation id that this task group belongs to

taskGroupId: string
taskIds: (string | TaskGroupSubGroup)[]

The identifiers of tasks/sub-groups that the task group will show within a Forms App. The order of the identifiers is respected when displaying actions.

versionId: number