Alokai
You are reading the documentation for v7.x and earlier, which is no longer the latest version. Switch to v8.x

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