Alokai

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

NameRequiredTypeDescription
activeOptionalbooleanBoolean flag of whether Organizational Unit is active {boolean} B2BUnit
addressesOptionalArray<Address>Addresses of the organizational unit node {Array<Address>} B2BUnit
administratorsOptionalArray<User>Administrators of the organizational unit node {Array<User>} B2BUnit
approvalProcessOptionalB2BApprovalProcess{B2BApprovalProcess} B2BUnit
approversOptionalArray<User>Approvers of the organizational unit node {Array<User>} B2BUnit
costCentersOptionalArray<B2BCostCenterShallow>The cost centers of the organizational unit node {Array<B2BCostCenterShallow>} B2BUnit
customersOptionalArray<User>Customers of the organizational unit node {Array<User>} B2BUnit
managersOptionalArray<User>Managers of the organizational unit node {Array<User>} B2BUnit
nameOptionalstringName of the organizational unit {string} B2BUnit
parentOrgUnitOptionalB2BUnit{B2BUnit} B2BUnit
uidRequiredstringIdentifier of the organizational unit {string} B2BUnit

Referenced Types

On this page