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 deposit */ export type CancelIctDepositRequestCreate = { /** * Full name of the ICT deposit resource, which contains account id and ICT deposit id */ name: string; /** * Reason why the ICT deposit is being canceled */ reason?: string | undefined; }; /** @internal */ export declare const CancelIctDepositRequestCreate$inboundSchema: z.ZodType; /** @internal */ export type CancelIctDepositRequestCreate$Outbound = { name: string; reason?: string | undefined; }; /** @internal */ export declare const CancelIctDepositRequestCreate$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 CancelIctDepositRequestCreate$ { /** @deprecated use `CancelIctDepositRequestCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CancelIctDepositRequestCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CancelIctDepositRequestCreate$Outbound` instead. */ type Outbound = CancelIctDepositRequestCreate$Outbound; } export declare function cancelIctDepositRequestCreateToJSON(cancelIctDepositRequestCreate: CancelIctDepositRequestCreate): string; export declare function cancelIctDepositRequestCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=cancelictdepositrequestcreate.d.ts.map