@ukkidney/ukrdc-axios-ts
    Preparing search index...

    Interface WorkItemSchema

    A work item in the EMPI

    WorkItemSchema

    interface WorkItemSchema {
        attributes?: Attributes;
        creationDate: string;
        description: string;
        id: number;
        lastUpdated: string;
        masterRecord?: Masterrecord;
        person?: Person;
        status: number;
        type: number;
        updatedBy?: string;
        updateDescription?: string;
    }
    Index

    Properties

    attributes?: Attributes

    WorkItemSchema

    creationDate: string

    Work item creation timestamp

    WorkItemSchema

    description: string

    Work item description

    WorkItemSchema

    id: number

    Work item ID

    WorkItemSchema

    lastUpdated: string

    Work item last updated timestamp

    WorkItemSchema

    masterRecord?: Masterrecord

    WorkItemSchema

    person?: Person

    WorkItemSchema

    status: number

    Work item status code

    WorkItemSchema

    type: number

    Work item type code

    WorkItemSchema

    updatedBy?: string

    Work item last updated by username

    WorkItemSchema

    updateDescription?: string

    Description of the reaoning behind the last update

    WorkItemSchema