import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type SubsidiaryReference = { /** * A unique identifier for an object. */ id?: string | undefined; /** * The name of the company. */ name?: string | null | undefined; }; /** @internal */ export declare const SubsidiaryReference$inboundSchema: z.ZodType; /** @internal */ export type SubsidiaryReference$Outbound = { id?: string | undefined; name?: string | null | undefined; }; /** @internal */ export declare const SubsidiaryReference$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace SubsidiaryReference$ { /** @deprecated use `SubsidiaryReference$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SubsidiaryReference$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SubsidiaryReference$Outbound` instead. */ type Outbound = SubsidiaryReference$Outbound; } export declare function subsidiaryReferenceToJSON(subsidiaryReference: SubsidiaryReference): string; export declare function subsidiaryReferenceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subsidiaryreference.d.ts.map