import * as z from "zod/v4-mini";
export type ListShipmentRatesByCurrencyCodeGlobals = {
/**
* Optional string used to pick a non-default API version to use. See our API version guide.
*/
shippoApiVersion?: string | undefined;
};
export type ListShipmentRatesByCurrencyCodeRequest = {
/**
* Object ID of the shipment to update
*/
shipmentId: string;
/**
* ISO currency code for the rates
*/
currencyCode?: string | undefined;
/**
* The page number you want to select
*/
page?: number | undefined;
/**
* The number of results to return per page (max 100)
*/
results?: number | undefined;
};
/** @internal */
export type ListShipmentRatesByCurrencyCodeRequest$Outbound = {
ShipmentId: string;
CurrencyCode: string;
page: number;
results: number;
};
/** @internal */
export declare const ListShipmentRatesByCurrencyCodeRequest$outboundSchema: z.ZodMiniType;
export declare function listShipmentRatesByCurrencyCodeRequestToJSON(listShipmentRatesByCurrencyCodeRequest: ListShipmentRatesByCurrencyCodeRequest): string;
//# sourceMappingURL=listshipmentratesbycurrencycode.d.ts.map