EntryGroup
Representation of an Entry Group EntryGroup
export interface EntryGroup {
'entries'?: Array<OrderEntry>;
'entryGroupNumber'?: number;
'entryGroups'?: Array<EntryGroup>;
'erroneous'?: boolean;
'label'?: string;
'type'?: string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
entries | Optional | Array<OrderEntry> | List of order entries {Array<OrderEntry>} EntryGroup |
entryGroupNumber | Optional | number | Identifier of the entry group {number} EntryGroup |
entryGroups | Optional | Array<EntryGroup> | List of child entry groups {Array<EntryGroup>} EntryGroup |
erroneous | Optional | boolean | Indicates if the entry group is in an error state {boolean} EntryGroup |
label | Optional | string | Label for the entry group {string} EntryGroup |
type | Optional | string | Indicates type of the group, possible values are STANDALONE, CONFIGURABLEBUNDLE or any customer implemented type for any new provider {string} EntryGroup |