/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; export type ListRefundsGlobals = { /** * Optional string used to pick a non-default API version to use. See our API version guide. */ shippoApiVersion?: string | undefined; }; export type ListRefundsRequest = {}; /** @internal */ export type ListRefundsRequest$Outbound = {}; /** @internal */ export const ListRefundsRequest$outboundSchema: z.ZodMiniType< ListRefundsRequest$Outbound, ListRefundsRequest > = z.object({}); export function listRefundsRequestToJSON( listRefundsRequest: ListRefundsRequest, ): string { return JSON.stringify( ListRefundsRequest$outboundSchema.parse(listRefundsRequest), ); }