import * as z from "zod"; import { StructuredMetadataValue } from "./structuredmetadatavalue.js"; /** * A pipe-separated list or a map of custom metadata fields (by external_id) and the values to assign to each of them. The = " and | characters can be supported as values when escaped with a prepended backslash (\). For a multi-select field, you can set a maximum of 3000 different metadata values on an asset. * * @remarks */ export type StructuredMetadataParam = string | { [k: string]: StructuredMetadataValue; }; export declare const StructuredMetadataParam$zodSchema: z.ZodType; //# sourceMappingURL=structuredmetadataparam.d.ts.map