import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AccountTransfersCreateTransferRequest = { /** * The correspondent id. */ correspondentId: string; /** * The account id. */ accountId: string; /** * A client-specified ID for the account transfer; no specific pattern is imposed. This field is used for idempotency to ensure that repeated requests with the same ID do not result in duplicate transfers. */ requestId?: string | undefined; transferCreate: components.TransferCreate; }; export type AccountTransfersCreateTransferResponse = { httpMeta: components.HTTPMetadata; /** * OK */ acatsTransfer?: components.AcatsTransfer | undefined; /** * INVALID_ARGUMENT: The request has an invalid argument. */ status?: components.Status | undefined; }; /** @internal */ export declare const AccountTransfersCreateTransferRequest$inboundSchema: z.ZodType; /** @internal */ export type AccountTransfersCreateTransferRequest$Outbound = { correspondent_id: string; account_id: string; request_id?: string | undefined; TransferCreate: components.TransferCreate$Outbound; }; /** @internal */ export declare const AccountTransfersCreateTransferRequest$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 AccountTransfersCreateTransferRequest$ { /** @deprecated use `AccountTransfersCreateTransferRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountTransfersCreateTransferRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountTransfersCreateTransferRequest$Outbound` instead. */ type Outbound = AccountTransfersCreateTransferRequest$Outbound; } export declare function accountTransfersCreateTransferRequestToJSON(accountTransfersCreateTransferRequest: AccountTransfersCreateTransferRequest): string; export declare function accountTransfersCreateTransferRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountTransfersCreateTransferResponse$inboundSchema: z.ZodType; /** @internal */ export type AccountTransfersCreateTransferResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; AcatsTransfer?: components.AcatsTransfer$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const AccountTransfersCreateTransferResponse$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 AccountTransfersCreateTransferResponse$ { /** @deprecated use `AccountTransfersCreateTransferResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountTransfersCreateTransferResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountTransfersCreateTransferResponse$Outbound` instead. */ type Outbound = AccountTransfersCreateTransferResponse$Outbound; } export declare function accountTransfersCreateTransferResponseToJSON(accountTransfersCreateTransferResponse: AccountTransfersCreateTransferResponse): string; export declare function accountTransfersCreateTransferResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=accounttransferscreatetransfer.d.ts.map