import * as z from "zod/v3"; import * as components from "../components/index.js"; export type UpdateBuyerShippingDetailsGlobals = { merchantAccountId?: string | undefined; }; export type UpdateBuyerShippingDetailsRequest = { /** * The ID of the buyer to update shipping details for. */ buyerId: string; /** * The ID of the shipping details to update. */ shippingDetailsId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; shippingDetailsUpdate: components.ShippingDetailsUpdate; }; /** @internal */ export type UpdateBuyerShippingDetailsRequest$Outbound = { buyer_id: string; shipping_details_id: string; merchantAccountId?: string | null | undefined; ShippingDetailsUpdate: components.ShippingDetailsUpdate$Outbound; }; /** @internal */ export declare const UpdateBuyerShippingDetailsRequest$outboundSchema: z.ZodType; export declare function updateBuyerShippingDetailsRequestToJSON(updateBuyerShippingDetailsRequest: UpdateBuyerShippingDetailsRequest): string; //# sourceMappingURL=updatebuyershippingdetails.d.ts.map