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 AssetsGetAssetRequest = { /** * The asset id. */ assetId: string; }; export type AssetsGetAssetResponse = { httpMeta: components.HTTPMetadata; /** * OK */ asset?: components.Asset | 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 AssetsGetAssetRequest$inboundSchema: z.ZodType; /** @internal */ export type AssetsGetAssetRequest$Outbound = { asset_id: string; }; /** @internal */ export declare const AssetsGetAssetRequest$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 AssetsGetAssetRequest$ { /** @deprecated use `AssetsGetAssetRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AssetsGetAssetRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AssetsGetAssetRequest$Outbound` instead. */ type Outbound = AssetsGetAssetRequest$Outbound; } export declare function assetsGetAssetRequestToJSON(assetsGetAssetRequest: AssetsGetAssetRequest): string; export declare function assetsGetAssetRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AssetsGetAssetResponse$inboundSchema: z.ZodType; /** @internal */ export type AssetsGetAssetResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; Asset?: components.Asset$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const AssetsGetAssetResponse$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 AssetsGetAssetResponse$ { /** @deprecated use `AssetsGetAssetResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AssetsGetAssetResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AssetsGetAssetResponse$Outbound` instead. */ type Outbound = AssetsGetAssetResponse$Outbound; } export declare function assetsGetAssetResponseToJSON(assetsGetAssetResponse: AssetsGetAssetResponse): string; export declare function assetsGetAssetResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=assetsgetasset.d.ts.map