import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AcatsTransfer, AcatsTransfer$Outbound } from "./acatstransfer.js"; /** * Response to list existing transfers. */ export type ListTransfersResponse = { /** * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */ nextPageToken?: string | undefined; /** * transfers resulting from filter query */ transfers?: Array | undefined; }; /** @internal */ export declare const ListTransfersResponse$inboundSchema: z.ZodType; /** @internal */ export type ListTransfersResponse$Outbound = { next_page_token?: string | undefined; transfers?: Array | undefined; }; /** @internal */ export declare const ListTransfersResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ListTransfersResponse$ { /** @deprecated use `ListTransfersResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ListTransfersResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ListTransfersResponse$Outbound` instead. */ type Outbound = ListTransfersResponse$Outbound; } export declare function listTransfersResponseToJSON(listTransfersResponse: ListTransfersResponse): string; export declare function listTransfersResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listtransfersresponse.d.ts.map