import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export declare const NftAssetTypeAtType: { readonly Nft: "NFT"; }; export type NftAssetTypeAtType = ClosedEnum; export declare const Standard: { readonly Single: "SINGLE"; readonly Multiple: "MULTIPLE"; }; export type Standard = ClosedEnum; export type NftAssetType = { atType: NftAssetTypeAtType; /** * Collection id */ collectionId: string; /** * Item Id, has format `ETHEREUM:${token}:${tokenId}` */ itemId: string; standard?: Standard | undefined; }; /** @internal */ export declare const NftAssetTypeAtType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const NftAssetTypeAtType$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace NftAssetTypeAtType$ { /** @deprecated use `NftAssetTypeAtType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Nft: "NFT"; }>; /** @deprecated use `NftAssetTypeAtType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Nft: "NFT"; }>; } /** @internal */ export declare const Standard$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Standard$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Standard$ { /** @deprecated use `Standard$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Single: "SINGLE"; readonly Multiple: "MULTIPLE"; }>; /** @deprecated use `Standard$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Single: "SINGLE"; readonly Multiple: "MULTIPLE"; }>; } /** @internal */ export declare const NftAssetType$inboundSchema: z.ZodType; /** @internal */ export type NftAssetType$Outbound = { "@type": string; collectionId: string; itemId: string; standard?: string | undefined; }; /** @internal */ export declare const NftAssetType$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 NftAssetType$ { /** @deprecated use `NftAssetType$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `NftAssetType$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `NftAssetType$Outbound` instead. */ type Outbound = NftAssetType$Outbound; } export declare function nftAssetTypeToJSON(nftAssetType: NftAssetType): string; export declare function nftAssetTypeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=nftassettype.d.ts.map