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 WatchlistServiceGetWatchlistItemRequest = { /** * The watchlist id. */ watchlistId: string; /** * The item id. */ itemId: string; }; export type WatchlistServiceGetWatchlistItemResponse = { httpMeta: components.HTTPMetadata; /** * OK */ watchlistItem?: components.WatchlistItem | 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 WatchlistServiceGetWatchlistItemRequest$inboundSchema: z.ZodType; /** @internal */ export type WatchlistServiceGetWatchlistItemRequest$Outbound = { watchlist_id: string; item_id: string; }; /** @internal */ export declare const WatchlistServiceGetWatchlistItemRequest$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 WatchlistServiceGetWatchlistItemRequest$ { /** @deprecated use `WatchlistServiceGetWatchlistItemRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `WatchlistServiceGetWatchlistItemRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `WatchlistServiceGetWatchlistItemRequest$Outbound` instead. */ type Outbound = WatchlistServiceGetWatchlistItemRequest$Outbound; } export declare function watchlistServiceGetWatchlistItemRequestToJSON(watchlistServiceGetWatchlistItemRequest: WatchlistServiceGetWatchlistItemRequest): string; export declare function watchlistServiceGetWatchlistItemRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const WatchlistServiceGetWatchlistItemResponse$inboundSchema: z.ZodType; /** @internal */ export type WatchlistServiceGetWatchlistItemResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; WatchlistItem?: components.WatchlistItem$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const WatchlistServiceGetWatchlistItemResponse$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 WatchlistServiceGetWatchlistItemResponse$ { /** @deprecated use `WatchlistServiceGetWatchlistItemResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `WatchlistServiceGetWatchlistItemResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `WatchlistServiceGetWatchlistItemResponse$Outbound` instead. */ type Outbound = WatchlistServiceGetWatchlistItemResponse$Outbound; } export declare function watchlistServiceGetWatchlistItemResponseToJSON(watchlistServiceGetWatchlistItemResponse: WatchlistServiceGetWatchlistItemResponse): string; export declare function watchlistServiceGetWatchlistItemResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=watchlistservicegetwatchlistitem.d.ts.map