/** * @type Credentials: Document representing the credentials of a customer. * * @property enabled: A flag indicating whether the customer is enabled and can log in. * * @property locked: A flag indicating whether the customer account is locked. * * @property login: The login of the customer. * - **Max Length:** 256 * * @property passwordQuestion: The password question. * - **Max Length:** 256 * */ export type Credentials = { enabled?: boolean; locked?: boolean; login: string; passwordQuestion?: string; } & { [key: string]: any; };