import * as z from "zod/v3"; import { EntityErrorObject } from "../components/entityerrorobject.js"; import { GustoEmbeddedError } from "./gustoembeddederror.js"; /** * Forbidden * * @remarks * * The targeted company has been archived because its EIN was reassigned to a replacement company. Use the replacement company referenced in the error metadata. */ export type ForbiddenErrorObjectData = { errors: Array; }; /** * Forbidden * * @remarks * * The targeted company has been archived because its EIN was reassigned to a replacement company. Use the replacement company referenced in the error metadata. */ export declare class ForbiddenErrorObject extends GustoEmbeddedError { errors: Array; /** The original data that was passed to this error instance. */ data$: ForbiddenErrorObjectData; constructor(err: ForbiddenErrorObjectData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const ForbiddenErrorObject$inboundSchema: z.ZodType; //# sourceMappingURL=forbiddenerrorobject.d.ts.map