/** * Representation of the 'ErrorResponse' schema. */ export type ErrorResponse = { /** * @example "Error occurred during tenant onboarding" */ error?: string; } & Record; //# sourceMappingURL=error-response.d.ts.map