import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ListTransfersGlobals = { /** * Specify an API version. * * @remarks * * API versioning follows the format `vYYYY.QQ.BB`, where * - `YYYY` is the year * - `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10) * - `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter. * - For example, `v2024.01.00` is the initial release of the first quarter of 2024. * * The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release. * When no version is specified, the API defaults to `v2024.01.00`. */ xMoovVersion?: string | undefined; }; export type ListTransfersRequest = { /** * Optional, comma-separated account IDs by which the response is filtered based on whether the account ID is the source or destination. */ accountIDs?: Array | undefined; /** * Optional parameter for filtering transfers by status. */ status?: components.TransferStatus | undefined; /** * Optional date-time which inclusively filters all transfers created after this date-time. */ startDateTime?: Date | undefined; /** * Optional date-time which exclusively filters all transfers created before this date-time. */ endDateTime?: Date | undefined; /** * Optional ID to filter for transfers in the same group. */ groupID?: string | undefined; /** * Optional ID to filter for transfer occurrences belonging to the same schedule. */ scheduleID?: string | undefined; /** * Optional code to filter for transfers associated with the payment link. */ paymentLinkCode?: string | undefined; /** * Optional parameter to only return refunded transfers. */ refunded?: boolean | undefined; /** * Optional parameter to only return disputed transfers. */ disputed?: boolean | undefined; /** * Optional alias from a foreign/external system which can be used to reference this resource. */ foreignID?: string | undefined; skip?: number | undefined; count?: number | undefined; accountID: string; }; export type ListTransfersResponse = { headers: { [k: string]: Array; }; result: Array; }; /** @internal */ export declare const ListTransfersGlobals$inboundSchema: z.ZodType; /** @internal */ export type ListTransfersGlobals$Outbound = { "X-Moov-Version"?: string | undefined; }; /** @internal */ export declare const ListTransfersGlobals$outboundSchema: z.ZodType; export declare function listTransfersGlobalsToJSON(listTransfersGlobals: ListTransfersGlobals): string; export declare function listTransfersGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ListTransfersRequest$inboundSchema: z.ZodType; /** @internal */ export type ListTransfersRequest$Outbound = { accountIDs?: Array | undefined; status?: string | undefined; startDateTime?: string | undefined; endDateTime?: string | undefined; groupID?: string | undefined; scheduleID?: string | undefined; paymentLinkCode?: string | undefined; refunded?: boolean | undefined; disputed?: boolean | undefined; foreignID?: string | undefined; skip?: number | undefined; count?: number | undefined; accountID: string; }; /** @internal */ export declare const ListTransfersRequest$outboundSchema: z.ZodType; export declare function listTransfersRequestToJSON(listTransfersRequest: ListTransfersRequest): string; export declare function listTransfersRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ListTransfersResponse$inboundSchema: z.ZodType; /** @internal */ export type ListTransfersResponse$Outbound = { Headers: { [k: string]: Array; }; Result: Array; }; /** @internal */ export declare const ListTransfersResponse$outboundSchema: z.ZodType; export declare function listTransfersResponseToJSON(listTransfersResponse: ListTransfersResponse): string; export declare function listTransfersResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listtransfers.d.ts.map