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 IctWithdrawalsCancelIctWithdrawalRequest = { /** * The account id. */ accountId: string; /** * The ictWithdrawal id. */ ictWithdrawalId: string; cancelIctWithdrawalRequestCreate: components.CancelIctWithdrawalRequestCreate; }; export type IctWithdrawalsCancelIctWithdrawalResponse = { httpMeta: components.HTTPMetadata; /** * OK */ ictWithdrawal?: components.IctWithdrawal | undefined; /** * INVALID_ARGUMENT: The request has an invalid argument. */ status?: components.Status | undefined; }; /** @internal */ export declare const IctWithdrawalsCancelIctWithdrawalRequest$inboundSchema: z.ZodType; /** @internal */ export type IctWithdrawalsCancelIctWithdrawalRequest$Outbound = { account_id: string; ictWithdrawal_id: string; CancelIctWithdrawalRequestCreate: components.CancelIctWithdrawalRequestCreate$Outbound; }; /** @internal */ export declare const IctWithdrawalsCancelIctWithdrawalRequest$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 IctWithdrawalsCancelIctWithdrawalRequest$ { /** @deprecated use `IctWithdrawalsCancelIctWithdrawalRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IctWithdrawalsCancelIctWithdrawalRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IctWithdrawalsCancelIctWithdrawalRequest$Outbound` instead. */ type Outbound = IctWithdrawalsCancelIctWithdrawalRequest$Outbound; } export declare function ictWithdrawalsCancelIctWithdrawalRequestToJSON(ictWithdrawalsCancelIctWithdrawalRequest: IctWithdrawalsCancelIctWithdrawalRequest): string; export declare function ictWithdrawalsCancelIctWithdrawalRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const IctWithdrawalsCancelIctWithdrawalResponse$inboundSchema: z.ZodType; /** @internal */ export type IctWithdrawalsCancelIctWithdrawalResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; IctWithdrawal?: components.IctWithdrawal$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const IctWithdrawalsCancelIctWithdrawalResponse$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 IctWithdrawalsCancelIctWithdrawalResponse$ { /** @deprecated use `IctWithdrawalsCancelIctWithdrawalResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IctWithdrawalsCancelIctWithdrawalResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IctWithdrawalsCancelIctWithdrawalResponse$Outbound` instead. */ type Outbound = IctWithdrawalsCancelIctWithdrawalResponse$Outbound; } export declare function ictWithdrawalsCancelIctWithdrawalResponseToJSON(ictWithdrawalsCancelIctWithdrawalResponse: IctWithdrawalsCancelIctWithdrawalResponse): string; export declare function ictWithdrawalsCancelIctWithdrawalResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ictwithdrawalscancelictwithdrawal.d.ts.map