B2BUnit
Organizational Unit object. B2BUnit
export interface B2BUnit {
'active'?: boolean;
'addresses'?: Array<Address>;
'administrators'?: Array<User>;
'approvalProcess'?: B2BApprovalProcess;
'approvers'?: Array<User>;
'costCenters'?: Array<B2BCostCenterShallow>;
'customers'?: Array<User>;
'managers'?: Array<User>;
'name'?: string;
'parentOrgUnit'?: B2BUnit;
'uid': string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
active | Optional | boolean | Boolean flag of whether Organizational Unit is active {boolean} B2BUnit |
addresses | Optional | Array<Address> | Addresses of the organizational unit node {Array<Address>} B2BUnit |
administrators | Optional | Array<User> | Administrators of the organizational unit node {Array<User>} B2BUnit |
approvalProcess | Optional | B2BApprovalProcess | {B2BApprovalProcess} B2BUnit |
approvers | Optional | Array<User> | Approvers of the organizational unit node {Array<User>} B2BUnit |
costCenters | Optional | Array<B2BCostCenterShallow> | The cost centers of the organizational unit node {Array<B2BCostCenterShallow>} B2BUnit |
customers | Optional | Array<User> | Customers of the organizational unit node {Array<User>} B2BUnit |
managers | Optional | Array<User> | Managers of the organizational unit node {Array<User>} B2BUnit |
name | Optional | string | Name of the organizational unit {string} B2BUnit |
parentOrgUnit | Optional | B2BUnit | {B2BUnit} B2BUnit |
uid | Required | string | Identifier of the organizational unit {string} B2BUnit |