B2BUnitNode
Representation of an organizational unit node B2BUnitNode
export interface B2BUnitNode {
'active'?: boolean;
'children'?: Array<B2BUnitNode>;
'id': string;
'name'?: string;
'parent'?: string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
active | Optional | boolean | Boolean flag of whether organizational unit represented by the node is active {boolean} B2BUnitNode |
children | Optional | Array<B2BUnitNode> | Child nodes of the organizational unit node {Array<B2BUnitNode>} B2BUnitNode |
id | Required | string | Identifier of the organizational unit represented by the node {string} B2BUnitNode |
name | Optional | string | Name of the organizational unit represented by the node {string} B2BUnitNode |
parent | Optional | string | Unique identifier of organizational unit node's parent unit {string} B2BUnitNode |