Alokai

OrgCustomerModification

Data object which contains information necessary for user modification OrgCustomerModification

export interface OrgCustomerModification {
	'active'?: boolean;
	'email'?: string;
	'firstName'?: string;
	'lastName'?: string;
	'orgUnit'?: B2BUnit;
	'password'?: string;
	'roles'?: Array<string>;
	'titleCode'?: string;
}

Properties

NameRequiredTypeDescription
activeOptionalbooleanBoolean flag of whether the user is active/enabled or not {boolean} OrgCustomerModification
emailOptionalstringEmail of the user {string} OrgCustomerModification
firstNameOptionalstringFirst name of the user {string} OrgCustomerModification
lastNameOptionalstringLast name of the user {string} OrgCustomerModification
orgUnitOptionalB2BUnit{B2BUnit} OrgCustomerModification
passwordOptionalstringPassword of the user {string} OrgCustomerModification
rolesOptionalArray<string>List of organizational approvers {Array<string>} OrgCustomerModification
titleCodeOptionalstringCode of the user's title {string} OrgCustomerModification

Referenced Types

On this page