A single reference data item.

interface SmiReferenceDataItem {
    archived?: boolean;
    code: string;
    label: string;
    parentCode?: string;
}

Properties

archived?: boolean

Whether the item is archived.

code: string

The code for the item.

label: string

The label for the item.

parentCode?: string

The parent code for the item.