import * as z from "zod/v4-mini"; export type CarrierAccountCanadaPostCreateParameters = { /** * Whether or not the user agrees to Canada Post's terms. If passed in as false, request will fail with error 400 */ canadaPostTerms: boolean; company: string; email: string; fullName: string; /** * Needs to be a valid phone number and cannot be null */ phone: string; }; /** @internal */ export type CarrierAccountCanadaPostCreateParameters$Outbound = { canada_post_terms: boolean; company: string; email: string; full_name: string; phone: string; }; /** @internal */ export declare const CarrierAccountCanadaPostCreateParameters$outboundSchema: z.ZodMiniType; export declare function carrierAccountCanadaPostCreateParametersToJSON(carrierAccountCanadaPostCreateParameters: CarrierAccountCanadaPostCreateParameters): string; //# sourceMappingURL=carrieraccountcanadapostcreateparameters.d.ts.map