/** * @type PasswordChangeRequest: Document representing a password change request. * * @property currentPassword: The customer\'s current password. * - **Max Length:** 4096 * * @property password: The customer\'s new password. * - **Max Length:** 4096 * */ export type PasswordChangeRequest = { currentPassword: string; password: string; } & { [key: string]: any; };