import * as z from "zod/v3"; export type GetBuyerShippingDetailsGlobals = { merchantAccountId?: string | undefined; }; export type GetBuyerShippingDetailsRequest = { /** * The ID of the buyer to retrieve shipping details for. */ buyerId: string; /** * The ID of the shipping details to retrieve. */ shippingDetailsId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; /** @internal */ export type GetBuyerShippingDetailsRequest$Outbound = { buyer_id: string; shipping_details_id: string; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const GetBuyerShippingDetailsRequest$outboundSchema: z.ZodType; export declare function getBuyerShippingDetailsRequestToJSON(getBuyerShippingDetailsRequest: GetBuyerShippingDetailsRequest): string; //# sourceMappingURL=getbuyershippingdetails.d.ts.map