Alokai

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

NameRequiredTypeDescription
entriesOptionalArray<OrderEntry>List of order entries {Array<OrderEntry>} EntryGroup
entryGroupNumberOptionalnumberIdentifier of the entry group {number} EntryGroup
entryGroupsOptionalArray<EntryGroup>List of child entry groups {Array<EntryGroup>} EntryGroup
erroneousOptionalbooleanIndicates if the entry group is in an error state {boolean} EntryGroup
labelOptionalstringLabel for the entry group {string} EntryGroup
typeOptionalstringIndicates type of the group, possible values are STANDALONE, CONFIGURABLEBUNDLE or any customer implemented type for any new provider {string} EntryGroup

Referenced Types

On this page