import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Request to reject internal Ascend transfers. */ export type RejectTransferRequestCreate = { /** * Comment to add to the transfer resource's audit trail */ comment?: string | undefined; /** * The name of the transfer to reject Format: correspondents/{correspondent_id}/accounts/{account_id}/transfers/{transfer_id} */ name: string; /** * The reason for the rejection to add to the the transfer resource's audit trail */ stateReason?: string | undefined; }; /** @internal */ export declare const RejectTransferRequestCreate$inboundSchema: z.ZodType; /** @internal */ export type RejectTransferRequestCreate$Outbound = { comment?: string | undefined; name: string; state_reason?: string | undefined; }; /** @internal */ export declare const RejectTransferRequestCreate$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 RejectTransferRequestCreate$ { /** @deprecated use `RejectTransferRequestCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `RejectTransferRequestCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `RejectTransferRequestCreate$Outbound` instead. */ type Outbound = RejectTransferRequestCreate$Outbound; } export declare function rejectTransferRequestCreateToJSON(rejectTransferRequestCreate: RejectTransferRequestCreate): string; export declare function rejectTransferRequestCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=rejecttransferrequestcreate.d.ts.map