/** * @type CustomerExtProfileRequest: Document representing the External Profile Request. * * @property authenticationProviderId: The authentication Provider Id * - **Min Length:** 1 * * @property email: The Email of the customer. * - **Min Length:** 1 * * @property externalId: The ID of the customer. * - **Min Length:** 1 * * @property firstName: The First Name of the customer. * - **Min Length:** 1 * * @property lastName: The Last Name of the customer. * - **Min Length:** 1 * */ export type CustomerExtProfileRequest = { authenticationProviderId: string; email?: string; externalId: string; firstName?: string; lastName?: string; } & { [key: string]: any; };