import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * In the case of masked fields, they should be handled carefully. * * @remarks * * Fields also must consider: * - Not providing a *fields* in parameters will not result in a change to any configured value * - Providing a value in a *masked field* with ****** (exactly 6 asterisks) will not change the configured value * - Providing *field* with null will clear the configured value * - Providing *field* with any other value will change the configured value and may affect the behavior of the account. */ export type FedExConnectExistingOwnAccountParameters = { /** * First name of the account holder */ firstName: string; /** * Last name of the account holder */ lastName: string; /** * Phone number of the account holder */ phoneNumber: string; /** * Street address of the account holder */ fromAddressSt: string; /** * City of the account holder */ fromAddressCity: string; /** * State of the account holder */ fromAddressState: string; /** * Zip code of the account holder */ fromAddressZip: string; /** * Country of the account holder */ fromAddressCountryIso2: string; }; /** @internal */ export declare const FedExConnectExistingOwnAccountParameters$inboundSchema: z.ZodMiniType; /** @internal */ export type FedExConnectExistingOwnAccountParameters$Outbound = { first_name: string; last_name: string; phone_number: string; from_address_st: string; from_address_city: string; from_address_state: string; from_address_zip: string; from_address_country_iso2: string; }; /** @internal */ export declare const FedExConnectExistingOwnAccountParameters$outboundSchema: z.ZodMiniType; export declare function fedExConnectExistingOwnAccountParametersToJSON(fedExConnectExistingOwnAccountParameters: FedExConnectExistingOwnAccountParameters): string; export declare function fedExConnectExistingOwnAccountParametersFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=fedexconnectexistingownaccountparameters.d.ts.map