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 FeesCancelFeeRequest = { /** * The account id. */ accountId: string; /** * The fee id. */ feeId: string; cancelFeeRequestCreate: components.CancelFeeRequestCreate; }; export type FeesCancelFeeResponse = { httpMeta: components.HTTPMetadata; /** * OK */ transfersFee?: components.TransfersFee | undefined; /** * INVALID_ARGUMENT: The request has an invalid argument. */ status?: components.Status | undefined; }; /** @internal */ export declare const FeesCancelFeeRequest$inboundSchema: z.ZodType; /** @internal */ export type FeesCancelFeeRequest$Outbound = { account_id: string; fee_id: string; CancelFeeRequestCreate: components.CancelFeeRequestCreate$Outbound; }; /** @internal */ export declare const FeesCancelFeeRequest$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 FeesCancelFeeRequest$ { /** @deprecated use `FeesCancelFeeRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FeesCancelFeeRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FeesCancelFeeRequest$Outbound` instead. */ type Outbound = FeesCancelFeeRequest$Outbound; } export declare function feesCancelFeeRequestToJSON(feesCancelFeeRequest: FeesCancelFeeRequest): string; export declare function feesCancelFeeRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const FeesCancelFeeResponse$inboundSchema: z.ZodType; /** @internal */ export type FeesCancelFeeResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; TransfersFee?: components.TransfersFee$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const FeesCancelFeeResponse$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 FeesCancelFeeResponse$ { /** @deprecated use `FeesCancelFeeResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FeesCancelFeeResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FeesCancelFeeResponse$Outbound` instead. */ type Outbound = FeesCancelFeeResponse$Outbound; } export declare function feesCancelFeeResponseToJSON(feesCancelFeeResponse: FeesCancelFeeResponse): string; export declare function feesCancelFeeResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=feescancelfee.d.ts.map