import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Request to cancel an existing ICT withdrawal */ export type CancelIctWithdrawalRequestCreate = { /** * Full name of the ICT withdrawal resource, which contains account id and ICT withdrawal id */ name: string; /** * Reason why the ICT withdrawal is being canceled */ reason?: string | undefined; }; /** @internal */ export declare const CancelIctWithdrawalRequestCreate$inboundSchema: z.ZodType; /** @internal */ export type CancelIctWithdrawalRequestCreate$Outbound = { name: string; reason?: string | undefined; }; /** @internal */ export declare const CancelIctWithdrawalRequestCreate$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 CancelIctWithdrawalRequestCreate$ { /** @deprecated use `CancelIctWithdrawalRequestCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CancelIctWithdrawalRequestCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CancelIctWithdrawalRequestCreate$Outbound` instead. */ type Outbound = CancelIctWithdrawalRequestCreate$Outbound; } export declare function cancelIctWithdrawalRequestCreateToJSON(cancelIctWithdrawalRequestCreate: CancelIctWithdrawalRequestCreate): string; export declare function cancelIctWithdrawalRequestCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=cancelictwithdrawalrequestcreate.d.ts.map