import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Address, Address$Outbound } from "./address.js"; import { BirthDate, BirthDate$Outbound } from "./birthdate.js"; import { GovernmentID, GovernmentID$Outbound } from "./governmentid.js"; import { IndividualName, IndividualName$Outbound } from "./individualname.js"; import { PhoneNumber, PhoneNumber$Outbound } from "./phonenumber.js"; import { RepresentativeResponsibilities, RepresentativeResponsibilities$Outbound } from "./representativeresponsibilities.js"; /** * Describes a business representative to create. */ export type CreateRepresentative = { name: IndividualName; phone?: PhoneNumber | undefined; email?: string | undefined; address?: Address | undefined; birthDate?: BirthDate | undefined; governmentID?: GovernmentID | undefined; /** * Describes the job responsibilities of a business representative. */ responsibilities?: RepresentativeResponsibilities | undefined; }; /** @internal */ export declare const CreateRepresentative$inboundSchema: z.ZodType; /** @internal */ export type CreateRepresentative$Outbound = { name: IndividualName$Outbound; phone?: PhoneNumber$Outbound | undefined; email?: string | undefined; address?: Address$Outbound | undefined; birthDate?: BirthDate$Outbound | undefined; governmentID?: GovernmentID$Outbound | undefined; responsibilities?: RepresentativeResponsibilities$Outbound | undefined; }; /** @internal */ export declare const CreateRepresentative$outboundSchema: z.ZodType; export declare function createRepresentativeToJSON(createRepresentative: CreateRepresentative): string; export declare function createRepresentativeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createrepresentative.d.ts.map