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 FeesGetFeeRequest = { /** * The account id. */ accountId: string; /** * The fee id. */ feeId: string; }; export type FeesGetFeeResponse = { httpMeta: components.HTTPMetadata; /** * OK */ transfersFee?: components.TransfersFee | undefined; /** * INVALID_ARGUMENT: The request has an invalid argument. */ status?: components.Status | undefined; }; /** @internal */ export declare const FeesGetFeeRequest$inboundSchema: z.ZodType; /** @internal */ export type FeesGetFeeRequest$Outbound = { account_id: string; fee_id: string; }; /** @internal */ export declare const FeesGetFeeRequest$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 FeesGetFeeRequest$ { /** @deprecated use `FeesGetFeeRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FeesGetFeeRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FeesGetFeeRequest$Outbound` instead. */ type Outbound = FeesGetFeeRequest$Outbound; } export declare function feesGetFeeRequestToJSON(feesGetFeeRequest: FeesGetFeeRequest): string; export declare function feesGetFeeRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const FeesGetFeeResponse$inboundSchema: z.ZodType; /** @internal */ export type FeesGetFeeResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; TransfersFee?: components.TransfersFee$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const FeesGetFeeResponse$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 FeesGetFeeResponse$ { /** @deprecated use `FeesGetFeeResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FeesGetFeeResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FeesGetFeeResponse$Outbound` instead. */ type Outbound = FeesGetFeeResponse$Outbound; } export declare function feesGetFeeResponseToJSON(feesGetFeeResponse: FeesGetFeeResponse): string; export declare function feesGetFeeResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=feesgetfee.d.ts.map