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 LedgerGetEntryRequest = { /** * The account id. */ accountId: string; /** * The entry id. */ entryId: string; }; export type LedgerGetEntryResponse = { httpMeta: components.HTTPMetadata; /** * OK */ entry?: components.Entry | undefined; /** * INVALID_ARGUMENT: The request is not valid, additional information may be present in the BadRequest details. */ status?: components.Status | undefined; }; /** @internal */ export declare const LedgerGetEntryRequest$inboundSchema: z.ZodType; /** @internal */ export type LedgerGetEntryRequest$Outbound = { account_id: string; entry_id: string; }; /** @internal */ export declare const LedgerGetEntryRequest$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 LedgerGetEntryRequest$ { /** @deprecated use `LedgerGetEntryRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `LedgerGetEntryRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `LedgerGetEntryRequest$Outbound` instead. */ type Outbound = LedgerGetEntryRequest$Outbound; } export declare function ledgerGetEntryRequestToJSON(ledgerGetEntryRequest: LedgerGetEntryRequest): string; export declare function ledgerGetEntryRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const LedgerGetEntryResponse$inboundSchema: z.ZodType; /** @internal */ export type LedgerGetEntryResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; Entry?: components.Entry$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const LedgerGetEntryResponse$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 LedgerGetEntryResponse$ { /** @deprecated use `LedgerGetEntryResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `LedgerGetEntryResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `LedgerGetEntryResponse$Outbound` instead. */ type Outbound = LedgerGetEntryResponse$Outbound; } export declare function ledgerGetEntryResponseToJSON(ledgerGetEntryResponse: LedgerGetEntryResponse): string; export declare function ledgerGetEntryResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ledgergetentry.d.ts.map