Alokai

B2BUnitNode

Representation of an organizational unit node B2BUnitNode

export interface B2BUnitNode {
	'active'?: boolean;
	'children'?: Array<B2BUnitNode>;
	'id': string;
	'name'?: string;
	'parent'?: string;
}

Properties

NameRequiredTypeDescription
activeOptionalbooleanBoolean flag of whether organizational unit represented by the node is active {boolean} B2BUnitNode
childrenOptionalArray<B2BUnitNode>Child nodes of the organizational unit node {Array<B2BUnitNode>} B2BUnitNode
idRequiredstringIdentifier of the organizational unit represented by the node {string} B2BUnitNode
nameOptionalstringName of the organizational unit represented by the node {string} B2BUnitNode
parentOptionalstringUnique identifier of organizational unit node's parent unit {string} B2BUnitNode

Referenced Types

On this page